annotate loader/wine/winestring.h @ 36748:a31e7824ef36
Remove pointless casts and obfuscated array indexing.
author |
reimar |
date |
Sat, 15 Feb 2014 17:24:29 +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 */
|