Commit d87da761 authored by Alexandre Julliard's avatar Alexandre Julliard

winemsibuilder: Build with msvcrt.

parent 4a8ae1c0
MODULE = winemsibuilder.exe
APPMODE = -mconsole -municode
IMPORTS = msi ole32
EXTRADLLFLAGS = -mconsole -municode -mno-cygwin
C_SRCS = main.c
......@@ -28,7 +28,6 @@
#include <objbase.h>
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL(winemsibuilder);
......@@ -131,7 +130,7 @@ static WCHAR *encode_stream( const WCHAR *in )
DWORD c, next, count;
WCHAR *out, *p;
count = strlenW( in );
count = lstrlenW( in );
if (count > MAX_STREAM_NAME)
return NULL;
......
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