From b98bfa81af30b673dbf98c492adc515c9e0177fc Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Wed, 1 Jun 2016 09:12:22 +0000 Subject: [PATCH] [MSI] silence DllRegisterServer MessageBoxes CORE-11244 svn path=/trunk/; revision=71483 --- reactos/dll/win32/msi/action.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/reactos/dll/win32/msi/action.c b/reactos/dll/win32/msi/action.c index b77d40c2f71..4ce66130d69 100644 --- a/reactos/dll/win32/msi/action.c +++ b/reactos/dll/win32/msi/action.c @@ -4769,10 +4769,17 @@ static UINT ACTION_RemoveIniValues( MSIPACKAGE *package ) static void register_dll( const WCHAR *dll, BOOL unregister ) { +#ifdef __REACTOS_ + static const WCHAR regW[] = + {'r','e','g','s','v','r','3','2','.','e','x','e',' ','/','s',' ','\"','%','s','\"',0}; + static const WCHAR unregW[] = + {'r','e','g','s','v','r','3','2','.','e','x','e',' ','/','s',' ','/','u',' ','\"','%','s','\"',0}; +#else /* __REACTOS__ */ static const WCHAR regW[] = {'r','e','g','s','v','r','3','2','.','e','x','e',' ','\"','%','s','\"',0}; static const WCHAR unregW[] = {'r','e','g','s','v','r','3','2','.','e','x','e',' ','/','u',' ','\"','%','s','\"',0}; +#endif /* __REACTOS__ */ PROCESS_INFORMATION pi; STARTUPINFOW si; WCHAR *cmd;