Commit d8cb43c7 authored by Gerard Patel's avatar Gerard Patel Committed by Alexandre Julliard

Changed the win31 style file dialog to 32 bits structures and

messages.
parent 15d9a602
......@@ -134,6 +134,13 @@ static inline WCHAR *strchrW( const WCHAR *str, WCHAR ch )
for ( ; *str; str++) if (*str == ch) return (WCHAR *)str;
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 )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment