https://git.reactos.org/?p=reactos.git;a=commitdiff;h=15786900c98cfa890d4dae1c2fe9ec1fc929801c
commit 15786900c98cfa890d4dae1c2fe9ec1fc929801c Author: Amine Khaldi <amine.kha...@reactos.org> AuthorDate: Mon Oct 9 12:32:09 2017 +0100 [MSI] Addendum to 71bffdc as I removed this unintentionally. --- dll/win32/msi/action.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dll/win32/msi/action.c b/dll/win32/msi/action.c index 8c17f3b512..98aaec49f3 100644 --- a/dll/win32/msi/action.c +++ b/dll/win32/msi/action.c @@ -4774,10 +4774,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;