Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
497f0887
Commit
497f0887
authored
Oct 18, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Oct 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dxof: Use BOOL type where appropriate.
parent
3f91834f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
parsing.c
dlls/d3dxof/parsing.c
+5
-5
No files found.
dlls/d3dxof/parsing.c
View file @
497f0887
...
...
@@ -542,7 +542,7 @@ static BOOL is_float(parse_buffer* buf)
DWORD
pos
=
0
;
char
c
;
float
decimal
;
BOOL
dot
=
0
;
BOOL
dot
=
FALSE
;
while
(
pos
<
buf
->
rem_bytes
&&
!
is_separator
(
c
=
*
(
buf
->
buffer
+
pos
)))
{
...
...
@@ -899,10 +899,10 @@ static inline BOOL is_primitive_type(WORD token)
case
TOKEN_LPSTR
:
case
TOKEN_UNICODE
:
case
TOKEN_CSTRING
:
ret
=
1
;
ret
=
TRUE
;
break
;
default:
ret
=
0
;
ret
=
FALSE
;
break
;
}
return
ret
;
...
...
@@ -948,14 +948,14 @@ static BOOL parse_template_members_list(parse_buffer * buf)
while
(
1
)
{
BOOL
array
=
0
;
BOOL
array
=
FALSE
;
int
nb_dims
=
0
;
cur_member
=
&
buf
->
pdxf
->
xtemplates
[
buf
->
pdxf
->
nb_xtemplates
].
members
[
idx_member
];
if
(
check_TOKEN
(
buf
)
==
TOKEN_ARRAY
)
{
get_TOKEN
(
buf
);
array
=
1
;
array
=
TRUE
;
}
if
(
check_TOKEN
(
buf
)
==
TOKEN_NAME
)
...
...
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