Fixed play back of uncompressed AVI file.
[wine.git] / include / wine / winestring.h
blobd6d2979c0ceda5d0c5fece62e4d3a1deb762b02e
1 #ifndef __WINE_WINE_WINESTRING_H
2 #define __WINE_WINE_WINESTRING_H
4 #include "windef.h"
6 INT WINAPI WideCharToLocal(LPSTR,LPCWSTR,INT);
7 INT WINAPI LocalToWideChar(LPWSTR,LPCSTR,INT);
8 LPWSTR WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
9 LPSTR WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
10 LPWSTR WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
11 LPSTR WINAPI lstrcpynWtoA(LPSTR,LPCWSTR,INT);
13 #define lstrncmpiA strncasecmp
15 #endif /* __WINE_WINE_WINESTRING_H */