mirror of
https://github.com/mpv-player/mpv
synced 2024-12-15 03:15:52 +00:00
bb7b132e08
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26077 b3059339-0415-0410-9bf9-f77b7e298cf2
14 lines
345 B
C
14 lines
345 B
C
#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 */
|