blob: cb70a0098ca568ce95ce85998af64d4f8ad74250 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef MPLAYER_WINESTRING_H
#define MPLAYER_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 /* MPLAYER_WINESTRING_H */
|