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
c60e81b7
Commit
c60e81b7
authored
Feb 27, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Feb 27, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
start: Use BOOL type where appropriate.
parent
dc8b11e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
start.c
programs/start/start.c
+4
-4
No files found.
programs/start/start.c
View file @
c60e81b7
...
...
@@ -181,8 +181,8 @@ int wmain (int argc, WCHAR *argv[])
DWORD
creation_flags
;
WCHAR
*
args
=
NULL
;
int
i
;
int
unix_mode
=
0
;
int
progid_open
=
0
;
BOOL
unix_mode
=
FALSE
;
BOOL
progid_open
=
FALSE
;
WCHAR
*
title
=
NULL
;
WCHAR
*
dos_filename
=
NULL
;
WCHAR
*
parent_directory
=
NULL
;
...
...
@@ -313,10 +313,10 @@ int wmain (int argc, WCHAR *argv[])
/* Wine extensions */
else
if
(
is_option
(
argv
[
i
],
unixW
))
{
unix_mode
=
1
;
unix_mode
=
TRUE
;
}
else
if
(
is_option
(
argv
[
i
],
progIDOpenW
))
{
progid_open
=
1
;
progid_open
=
TRUE
;
}
else
{
...
...
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