annotate loader/wine/winestring.h @ 35972:0e6cd2cc0824
Cosmetic: Format to MPlayer coding style.
author |
ib |
date |
Thu, 28 Mar 2013 15:58:21 +0000 |
parents |
494c251bd39e |
children |
|
rev |
line source |
26045
|
1 #ifndef MPLAYER_WINESTRING_H
|
|
2 #define MPLAYER_WINESTRING_H
|
1
|
3
|
35912
|
4 #include <strings.h>
|
|
5
|
1
|
6 #include "windef.h"
|
|
7
|
|
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);
|
|
12
|
|
13 #define lstrncmpiA strncasecmp
|
|
14
|
26045
|
15 #endif /* MPLAYER_WINESTRING_H */
|