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
299edf32
Commit
299edf32
authored
Nov 27, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Nov 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecrt0: Use BOOL type where appropriate.
parent
ca58cea0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
exe_main.c
dlls/winecrt0/exe_main.c
+2
-1
exe_wmain.c
dlls/winecrt0/exe_wmain.c
+2
-1
No files found.
dlls/winecrt0/exe_main.c
View file @
299edf32
...
...
@@ -27,7 +27,8 @@ int main( int argc, char *argv[] )
{
STARTUPINFOA
info
;
char
*
cmdline
=
GetCommandLineA
();
int
bcount
=
0
,
in_quotes
=
0
;
int
bcount
=
0
;
BOOL
in_quotes
=
FALSE
;
while
(
*
cmdline
)
{
...
...
dlls/winecrt0/exe_wmain.c
View file @
299edf32
...
...
@@ -29,7 +29,8 @@ int wmain( int argc, WCHAR *argv[] )
{
STARTUPINFOW
info
;
WCHAR
*
cmdline
=
GetCommandLineW
();
int
bcount
=
0
,
in_quotes
=
0
;
int
bcount
=
0
;
BOOL
in_quotes
=
FALSE
;
while
(
*
cmdline
)
{
...
...
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