Convert WND.text field to Unicode.
[wine.git] / include / wine / winestring.h
blob5b66dc803cceede0bbcd13981e901a65ff9640ff
1 #ifndef __WINE_WINE_WINESTRING_H
2 #define __WINE_WINE_WINESTRING_H
4 #include "windef.h"
6 LPWSTR WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
7 LPSTR WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
8 LPWSTR WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
9 LPSTR WINAPI lstrcpynWtoA(LPSTR,LPCWSTR,INT);
11 #define lstrncmpiA strncasecmp
13 #endif /* __WINE_WINE_WINESTRING_H */