Author: cwittich Date: Wed Jun 1 09:12:22 2016 New Revision: 71483
URL: http://svn.reactos.org/svn/reactos?rev=71483&view=rev Log: [MSI] silence DllRegisterServer MessageBoxes CORE-11244
Modified: trunk/reactos/dll/win32/msi/action.c
Modified: trunk/reactos/dll/win32/msi/action.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msi/action.c?rev=... ============================================================================== --- trunk/reactos/dll/win32/msi/action.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/msi/action.c [iso-8859-1] Wed Jun 1 09:12:22 2016 @@ -4769,10 +4769,17 @@
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;