Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2042a659
Commit
2042a659
authored
Oct 04, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Oct 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mlang: Use BOOL type where appropriate.
parent
7af5360c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
mlang.c
dlls/mlang/mlang.c
+4
-4
No files found.
dlls/mlang/mlang.c
View file @
2042a659
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment