mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fix a compile error I was seeing due to lack of mbstowcs.
Please let me know if this breaks anything for anyone else. svn path=/trunk/; revision=11990
This commit is contained in:
parent
f6e33ed19b
commit
46b1a8f34e
2 changed files with 2 additions and 3 deletions
|
@ -23,6 +23,7 @@
|
|||
#include <windows.h>
|
||||
#include "loadlib.h"
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <wchar.h>
|
||||
|
||||
#define APP_VERSION 1
|
||||
|
|
|
@ -11,9 +11,7 @@ TARGET_APPTYPE = console
|
|||
|
||||
TARGET_NAME = loadlib
|
||||
|
||||
TARGET_CFLAGS = -Wall -Werror
|
||||
|
||||
#TARGET_CFLAGS = -DDBG -DUNICODE -D_UNICODE
|
||||
TARGET_CFLAGS = -Wall -Werror -D_USE_W32API -DUNICODE -D_UNICODE
|
||||
|
||||
TARGET_SDKLIBS = kernel32.a ntdll.a
|
||||
|
||||
|
|
Loading…
Reference in a new issue