Commit 4a848304 authored by Alexandre Julliard's avatar Alexandre Julliard

wineboot: Build with msvcrt.

parent 6887af4f
......@@ -3,6 +3,8 @@ APPMODE = -mconsole
IMPORTS = uuid advapi32
DELAYIMPORTS = shell32 shlwapi version user32
EXTRADLLFLAGS = -mno-cygwin
C_SRCS = \
shutdown.c \
wineboot.c
......
......@@ -63,7 +63,7 @@ static BOOL CALLBACK enum_proc( HWND hwnd, LPARAM lp )
}
/* compare two window info structures; callback for qsort */
static int cmp_window( const void *ptr1, const void *ptr2 )
static int __cdecl cmp_window( const void *ptr1, const void *ptr2 )
{
const struct window_info *info1 = ptr1;
const struct window_info *info2 = ptr2;
......
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