Commit 2042a659 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

mlang: Use BOOL type where appropriate.

parent 7af5360c
......@@ -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)
{
......
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