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
47f8c9a5
Commit
47f8c9a5
authored
Feb 10, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Feb 10, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set full UI mode by default.
parent
50dc513b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
10 deletions
+4
-10
msiexec.c
programs/msiexec/msiexec.c
+4
-10
No files found.
programs/msiexec/msiexec.c
View file @
47f8c9a5
...
...
@@ -462,7 +462,7 @@ int main(int argc, char **argv)
LPWSTR
PatchFileName
=
NULL
;
INSTALLTYPE
InstallType
=
INSTALLTYPE_DEFAULT
;
INSTALLUILEVEL
InstallUILevel
=
0
,
retInstallUILevel
;
INSTALLUILEVEL
InstallUILevel
=
INSTALLUILEVEL_FULL
;
LPWSTR
DllName
=
NULL
;
DWORD
ReturnCode
;
...
...
@@ -483,9 +483,6 @@ int main(int argc, char **argv)
return
1
;
}
for
(
i
=
0
;
i
<
argc
;
i
++
)
WINE_ERR
(
"argv[%d]=%s
\n
"
,
i
,
argv
[
i
]);
for
(
i
=
1
;
i
<
argc
;
i
++
)
{
WINE_TRACE
(
"argvW[%d] = %s
\n
"
,
i
,
wine_dbgstr_w
(
argvW
[
i
]));
...
...
@@ -812,12 +809,6 @@ int main(int argc, char **argv)
fprintf
(
stderr
,
"Unknown option
\"
%s
\"
for UI level
\n
"
,
wine_dbgstr_w
(
argvW
[
i
]
+
2
));
}
retInstallUILevel
=
MsiSetInternalUI
(
InstallUILevel
,
NULL
);
if
(
retInstallUILevel
==
INSTALLUILEVEL_NOCHANGE
)
{
fprintf
(
stderr
,
"Setting the UI level to 0x%x failed.
\n
"
,
InstallUILevel
);
ExitProcess
(
1
);
}
}
else
if
(
!
msi_strequal
(
argvW
[
i
],
"/y"
))
{
...
...
@@ -862,6 +853,9 @@ int main(int argc, char **argv)
}
}
/* start the GUI */
MsiSetInternalUI
(
InstallUILevel
,
NULL
);
Properties
=
build_properties
(
property_list
);
Transforms
=
build_transforms
(
transform_list
);
...
...
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