mlang: Use BOOL type where appropriate.

oldstable
Frédéric Delanoy 2013-10-04 23:32:14 +02:00 committed by Alexandre Julliard
parent 7af5360c4e
commit 2042a6598c
1 changed files with 4 additions and 4 deletions

View File

@ -574,8 +574,8 @@ static inline void sjis2jis(unsigned char *p1, unsigned char *p2)
static int han2zen(unsigned char *p1, unsigned char *p2)
{
int maru = FALSE;
int nigori = FALSE;
BOOL maru = FALSE;
BOOL nigori = FALSE;
static const unsigned char char1[] = {129,129,129,129,129,131,131,131,131,
131,131,131,131,131,131,129,131,131,131,131,131,131,131,131,131,131,
131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,
@ -622,7 +622,7 @@ static UINT ConvertJIS2SJIS(LPCSTR input, DWORD count, LPSTR output)
DWORD i = 0;
int j = 0;
unsigned char p2,p;
int shifted = FALSE;
BOOL shifted = FALSE;
while (i < count)
{
@ -690,7 +690,7 @@ static UINT ConvertSJIS2JIS(LPCSTR input, DWORD count, LPSTR output)
DWORD i = 0;
int j = 0;
unsigned char p2,p;
int shifted = FALSE;
BOOL shifted = FALSE;
while (i < count)
{