applied patch #1164307 - Fixes to allow building Contrib/ on debian (minus Makefiles)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3923 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-03-17 21:26:59 +00:00
parent 38b94f19a5
commit ccf2bb96a5
15 changed files with 29 additions and 29 deletions

View file

@ -1,6 +1,6 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include "..\..\..\ExDLL\exdll.h"
#include "../../../ExDLL/exdll.h"
int DoPatch(HANDLE hPatch, HANDLE hSource, HANDLE hDest);
void strcopy(char *tgt, const char *src);
@ -107,7 +107,7 @@ BOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call, LPVOID lpReserved)
UINT CRCTable[256];
BOOL bInitCRC = FALSE;
_inline void InitCRC() {
inline void InitCRC() {
int i, j; unsigned long c;
for (c = i = 0; i < 256; c = ++i) {
for (j = 0; j < 8; j++) {