Moved inclusion of winestring.h to winebase.h.
Added Winelib macros for lstrncmp functions.
This commit is contained in:
parent
e0ec8fd931
commit
51f5842089
|
@ -2,6 +2,7 @@
|
|||
#define __WINE_WINBASE_H
|
||||
|
||||
#include "winnt.h"
|
||||
#include "wine/winestring.h"
|
||||
|
||||
#include "pshpack1.h"
|
||||
|
||||
|
|
|
@ -9,8 +9,10 @@ INT16 WINAPI LocalToWideChar16(LPWSTR,LPSTR,INT16);
|
|||
INT WINAPI LocalToWideChar(LPWSTR,LPSTR,INT);
|
||||
INT WINAPI lstrncmpA(LPCSTR,LPCSTR,INT);
|
||||
INT WINAPI lstrncmpW(LPCWSTR,LPCWSTR,INT);
|
||||
#define lstrncmp WINELIB_NAME_AW(lstrncmp)
|
||||
INT WINAPI lstrncmpiA(LPCSTR,LPCSTR,INT);
|
||||
INT WINAPI lstrncmpiW(LPCWSTR,LPCWSTR,INT);
|
||||
#define lstrncmpi WINELIB_NAME_AW(lstrncmpi)
|
||||
LPWSTR WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
|
||||
LPSTR WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
|
||||
LPWSTR WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
#endif
|
||||
#include "windef.h"
|
||||
#include "wingdi.h"
|
||||
#include "wine/winestring.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include <sys/ioctl.h>
|
||||
#include <sys/errno.h>
|
||||
#include "winuser.h"
|
||||
#include "winbase.h"
|
||||
#include "mmsystem.h"
|
||||
#include "debug.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue