Hans Leidekker : msiexec: Support the "b!" UI option.

Alexandre Julliard julliard at winehq.org
Mon Mar 12 11:59:59 CDT 2012


Module: wine
Branch: master
Commit: 3a9d30d485fa8f067308c837944840435e5c5a9c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3a9d30d485fa8f067308c837944840435e5c5a9c

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Mon Mar 12 12:24:55 2012 +0100

msiexec: Support the "b!" UI option.

---

 programs/msiexec/msiexec.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/programs/msiexec/msiexec.c b/programs/msiexec/msiexec.c
index 4542f34..2227af0 100644
--- a/programs/msiexec/msiexec.c
+++ b/programs/msiexec/msiexec.c
@@ -887,6 +887,11 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
 				InstallUILevel = INSTALLUILEVEL_BASIC|INSTALLUILEVEL_ENDDIALOG;
 				WINE_FIXME("Unknown modifier: !\n");
 			}
+			else if(msi_strequal(argvW[i]+2, "b!"))
+			{
+				InstallUILevel = INSTALLUILEVEL_BASIC;
+				WINE_FIXME("Unknown modifier: !\n");
+			}
 			else
 			{
 				fprintf(stderr, "Unknown option \"%s\" for UI level\n",




More information about the wine-cvs mailing list