annotate loader/wine/winestring.h @ 34346:3d0c795524b0
Fix bug with wrong focus in file selector.
The focus can only be set to fsFNameList after it's realized and mapped.
This also removes the irritating selection of the fsPathCombo.
author |
ib |
date |
Sun, 11 Dec 2011 16:02:02 +0000 |
parents |
a8ea87c71d18 |
children |
494c251bd39e |
rev |
line source |
26045
|
1 #ifndef MPLAYER_WINESTRING_H
|
|
2 #define MPLAYER_WINESTRING_H
|
1
|
3
|
|
4 #include "windef.h"
|
|
5
|
|
6 LPWSTR WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
|
|
7 LPSTR WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
|
|
8 LPWSTR WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
|
|
9 LPSTR WINAPI lstrcpynWtoA(LPSTR,LPCWSTR,INT);
|
|
10
|
|
11 #define lstrncmpiA strncasecmp
|
|
12
|
26045
|
13 #endif /* MPLAYER_WINESTRING_H */
|