Commit a8732ce6 authored by Alexandre Julliard's avatar Alexandre Julliard

mspatcha: Build with msvcrt.

parent 8997127c
MODULE = mspatcha.dll MODULE = mspatcha.dll
IMPORTLIB = mspatcha IMPORTLIB = mspatcha
EXTRADLLFLAGS = -mno-cygwin
C_SRCS = \ C_SRCS = \
lzxd_dec.c \ lzxd_dec.c \
mspatcha_main.c \ mspatcha_main.c \
......
...@@ -21,8 +21,6 @@ ...@@ -21,8 +21,6 @@
* - Implememnt interleaved decoding * - Implememnt interleaved decoding
*/ */
#include "config.h"
#include <stdarg.h> #include <stdarg.h>
#include <assert.h> #include <assert.h>
......
...@@ -29,8 +29,6 @@ ...@@ -29,8 +29,6 @@
* solution to the above 32-bit exe problem. * solution to the above 32-bit exe problem.
*/ */
#include "config.h"
#include <stdarg.h> #include <stdarg.h>
#include "windef.h" #include "windef.h"
......
...@@ -32,8 +32,6 @@ ...@@ -32,8 +32,6 @@
* but not all, of the positions listed in the PE .reloc table. * but not all, of the positions listed in the PE .reloc table.
*/ */
#include "config.h"
#include <stdarg.h> #include <stdarg.h>
#include <stdlib.h> #include <stdlib.h>
...@@ -297,7 +295,7 @@ static INT64 read_svli(struct patch_file_header *ph) ...@@ -297,7 +295,7 @@ static INT64 read_svli(struct patch_file_header *ph)
return n; return n;
} }
static int compare_ignored_range(const void *a, const void *b) static int __cdecl compare_ignored_range(const void *a, const void *b)
{ {
LONG delta = ((PATCH_IGNORE_RANGE*)a)->OffsetInOldFile - ((PATCH_IGNORE_RANGE*)b)->OffsetInOldFile; LONG delta = ((PATCH_IGNORE_RANGE*)a)->OffsetInOldFile - ((PATCH_IGNORE_RANGE*)b)->OffsetInOldFile;
if (delta > 0) if (delta > 0)
...@@ -307,7 +305,7 @@ static int compare_ignored_range(const void *a, const void *b) ...@@ -307,7 +305,7 @@ static int compare_ignored_range(const void *a, const void *b)
return 0; return 0;
} }
static int compare_retained_range_old(const void *a, const void *b) static int __cdecl compare_retained_range_old(const void *a, const void *b)
{ {
LONG delta = ((PATCH_RETAIN_RANGE*)a)->OffsetInOldFile - ((PATCH_RETAIN_RANGE*)b)->OffsetInOldFile; LONG delta = ((PATCH_RETAIN_RANGE*)a)->OffsetInOldFile - ((PATCH_RETAIN_RANGE*)b)->OffsetInOldFile;
if (delta > 0) if (delta > 0)
...@@ -317,7 +315,7 @@ static int compare_retained_range_old(const void *a, const void *b) ...@@ -317,7 +315,7 @@ static int compare_retained_range_old(const void *a, const void *b)
return 0; return 0;
} }
static int compare_retained_range_new(const void *a, const void *b) static int __cdecl compare_retained_range_new(const void *a, const void *b)
{ {
LONG delta = ((PATCH_RETAIN_RANGE*)a)->OffsetInNewFile - ((PATCH_RETAIN_RANGE*)b)->OffsetInNewFile; LONG delta = ((PATCH_RETAIN_RANGE*)a)->OffsetInNewFile - ((PATCH_RETAIN_RANGE*)b)->OffsetInNewFile;
if (delta > 0) if (delta > 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment