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
|
#define __WINE_WINBASE_H
|
||||||
|
|
||||||
#include "winnt.h"
|
#include "winnt.h"
|
||||||
|
#include "wine/winestring.h"
|
||||||
|
|
||||||
#include "pshpack1.h"
|
#include "pshpack1.h"
|
||||||
|
|
||||||
|
|
|
@ -4,13 +4,15 @@
|
||||||
#include "windef.h"
|
#include "windef.h"
|
||||||
|
|
||||||
INT16 WINAPI WideCharToLocal16(LPSTR,LPWSTR,INT16);
|
INT16 WINAPI WideCharToLocal16(LPSTR,LPWSTR,INT16);
|
||||||
INT WINAPI WideCharToLocal(LPSTR,LPWSTR,INT);
|
INT WINAPI WideCharToLocal(LPSTR,LPWSTR,INT);
|
||||||
INT16 WINAPI LocalToWideChar16(LPWSTR,LPSTR,INT16);
|
INT16 WINAPI LocalToWideChar16(LPWSTR,LPSTR,INT16);
|
||||||
INT WINAPI LocalToWideChar(LPWSTR,LPSTR,INT);
|
INT WINAPI LocalToWideChar(LPWSTR,LPSTR,INT);
|
||||||
INT WINAPI lstrncmpA(LPCSTR,LPCSTR,INT);
|
INT WINAPI lstrncmpA(LPCSTR,LPCSTR,INT);
|
||||||
INT WINAPI lstrncmpW(LPCWSTR,LPCWSTR,INT);
|
INT WINAPI lstrncmpW(LPCWSTR,LPCWSTR,INT);
|
||||||
INT WINAPI lstrncmpiA(LPCSTR,LPCSTR,INT);
|
#define lstrncmp WINELIB_NAME_AW(lstrncmp)
|
||||||
INT WINAPI lstrncmpiW(LPCWSTR,LPCWSTR,INT);
|
INT WINAPI lstrncmpiA(LPCSTR,LPCSTR,INT);
|
||||||
|
INT WINAPI lstrncmpiW(LPCWSTR,LPCWSTR,INT);
|
||||||
|
#define lstrncmpi WINELIB_NAME_AW(lstrncmpi)
|
||||||
LPWSTR WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
|
LPWSTR WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
|
||||||
LPSTR WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
|
LPSTR WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
|
||||||
LPWSTR WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
|
LPWSTR WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
#endif
|
#endif
|
||||||
#include "windef.h"
|
#include "windef.h"
|
||||||
#include "wingdi.h"
|
#include "wingdi.h"
|
||||||
#include "wine/winestring.h"
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <sys/errno.h>
|
#include <sys/errno.h>
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
|
#include "winbase.h"
|
||||||
#include "mmsystem.h"
|
#include "mmsystem.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue