mirror of
https://github.com/mpv-player/mpv
synced 2024-11-18 21:16:10 +01:00
d34041569e
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2 b3059339-0415-0410-9bf9-f77b7e298cf2
14 lines
357 B
C
14 lines
357 B
C
#ifndef __WINE_WINE_WINESTRING_H
|
|
#define __WINE_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_WINE_WINESTRING_H */
|