Changed the win31 style file dialog to 32 bits structures and

messages.
This commit is contained in:
Gerard Patel 2000-08-01 23:33:37 +00:00 committed by Alexandre Julliard
parent 15d9a60246
commit d8cb43c78e
2 changed files with 985 additions and 930 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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;