d3dxof: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-10-04 23:32:16 +02:00 committed by Alexandre Julliard
parent 2042a6598c
commit eea901782c

View file

@ -510,11 +510,11 @@ static BOOL is_name(parse_buffer* buf)
char tmp[512];
DWORD pos = 0;
char c;
BOOL error = 0;
BOOL error = FALSE;
while (pos < buf->rem_bytes && !is_separator(c = *(buf->buffer+pos)))
{
if (!(((c >= 'a') && (c <= 'z')) || ((c >= 'A') && (c <= 'Z')) || ((c >= '0') && (c <= '9')) || (c == '_') || (c == '-')))
error = 1;
error = TRUE;
if (pos < sizeof(tmp))
tmp[pos] = c;
pos++;
@ -602,7 +602,7 @@ static BOOL is_string(parse_buffer* buf)
char tmp[512];
DWORD pos = 0;
char c;
BOOL ok = 0;
BOOL ok = FALSE;
if (*buf->buffer != '"')
return FALSE;
@ -612,7 +612,7 @@ static BOOL is_string(parse_buffer* buf)
c = *(buf->buffer+pos+1);
if (c == '"')
{
ok = 1;
ok = TRUE;
break;
}
if (pos < sizeof(tmp))