kernel32: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-11-24 00:05:08 +01:00 committed by Alexandre Julliard
parent 0ef0f7bb0a
commit 6e472d8bc3
1 changed files with 2 additions and 2 deletions

View File

@ -267,8 +267,8 @@ static void PROFILE_Free( PROFILESECTION *section )
}
}
/* returns 1 if a character white space else 0 */
static inline int PROFILE_isspaceW(WCHAR c)
/* returns TRUE if a whitespace character, else FALSE */
static inline BOOL PROFILE_isspaceW(WCHAR c)
{
/* ^Z (DOS EOF) is a space too (found on CD-ROMs) */
return isspaceW(c) || c == 0x1a;