Moved inclusion of winestring.h to winebase.h.

Added Winelib macros for lstrncmp functions.
This commit is contained in:
Alexandre Julliard 1999-06-06 17:23:59 +00:00
parent e0ec8fd931
commit 51f5842089
4 changed files with 10 additions and 7 deletions

View File

@ -2,6 +2,7 @@
#define __WINE_WINBASE_H
#include "winnt.h"
#include "wine/winestring.h"
#include "pshpack1.h"

View File

@ -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);

View File

@ -6,7 +6,6 @@
#endif
#include "windef.h"
#include "wingdi.h"
#include "wine/winestring.h"
#ifdef __cplusplus
extern "C" {

View File

@ -20,6 +20,7 @@
#include <sys/ioctl.h>
#include <sys/errno.h>
#include "winuser.h"
#include "winbase.h"
#include "mmsystem.h"
#include "debug.h"