blob: 403879248bdced22c1172c92a4a7e85e0be57f4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef WINE_WINESTRING_H
#define WINE_WINESTRING_H
#include "windef.h"
LPWSTR WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
LPSTR WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
LPWSTR WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
LPSTR WINAPI lstrcpynWtoA(LPSTR,LPCWSTR,INT);
#define lstrncmpiA strncasecmp
#endif /* WINE_WINESTRING_H */
|