Changed the win31 style file dialog to 32 bits structures and
messages.
This commit is contained in:
parent
15d9a60246
commit
d8cb43c78e
File diff suppressed because it is too large
Load Diff
|
@ -135,6 +135,13 @@ static inline WCHAR *strchrW( const WCHAR *str, WCHAR ch )
|
|||
return NULL;
|
||||
}
|
||||
|
||||
static inline WCHAR *strrchrW( const WCHAR *str, WCHAR ch )
|
||||
{
|
||||
WCHAR *ret = NULL;
|
||||
for ( ; *str; str++) if (*str == ch) ret = (WCHAR *)str;
|
||||
return ret;
|
||||
}
|
||||
|
||||
static inline WCHAR *strlwrW( WCHAR *str )
|
||||
{
|
||||
WCHAR *ret = str;
|
||||
|
|
Loading…
Reference in New Issue