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
5fd54997
Commit
5fd54997
authored
Nov 05, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Nov 05, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regsvr32: Use BOOL type where appropriate.
parent
bb2be173
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
regsvr32.c
programs/regsvr32/regsvr32.c
+2
-2
No files found.
programs/regsvr32/regsvr32.c
View file @
5fd54997
...
@@ -60,7 +60,7 @@ typedef HRESULT (*DLLREGISTER) (void);
...
@@ -60,7 +60,7 @@ typedef HRESULT (*DLLREGISTER) (void);
typedef
HRESULT
(
*
DLLUNREGISTER
)
(
void
);
typedef
HRESULT
(
*
DLLUNREGISTER
)
(
void
);
typedef
HRESULT
(
*
DLLINSTALL
)
(
BOOL
,
LPCWSTR
);
typedef
HRESULT
(
*
DLLINSTALL
)
(
BOOL
,
LPCWSTR
);
int
Silent
=
0
;
static
BOOL
Silent
=
FALSE
;
static
int
Usage
(
void
)
static
int
Usage
(
void
)
{
{
...
@@ -206,7 +206,7 @@ int main(int argc, char* argv[])
...
@@ -206,7 +206,7 @@ int main(int argc, char* argv[])
if
((
!
strcasecmp
(
argv
[
i
],
"/u"
))
||
(
!
strcasecmp
(
argv
[
i
],
"-u"
)))
if
((
!
strcasecmp
(
argv
[
i
],
"/u"
))
||
(
!
strcasecmp
(
argv
[
i
],
"-u"
)))
Unregister
=
TRUE
;
Unregister
=
TRUE
;
else
if
((
!
strcasecmp
(
argv
[
i
],
"/s"
))
||
(
!
strcasecmp
(
argv
[
i
],
"-s"
)))
else
if
((
!
strcasecmp
(
argv
[
i
],
"/s"
))
||
(
!
strcasecmp
(
argv
[
i
],
"-s"
)))
Silent
=
1
;
Silent
=
TRUE
;
else
if
((
!
strncasecmp
(
argv
[
i
],
"/i"
,
strlen
(
"/i"
)))
||
(
!
strncasecmp
(
argv
[
i
],
"-i"
,
strlen
(
"-i"
))))
else
if
((
!
strncasecmp
(
argv
[
i
],
"/i"
,
strlen
(
"/i"
)))
||
(
!
strncasecmp
(
argv
[
i
],
"-i"
,
strlen
(
"-i"
))))
{
{
CHAR
*
command_line
=
argv
[
i
]
+
strlen
(
"/i"
);
CHAR
*
command_line
=
argv
[
i
]
+
strlen
(
"/i"
);
...
...
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