[MSI] Addendum to 71bffdc as I removed this unintentionally.
authorAmine Khaldi <amine.khaldi@reactos.org>
Mon, 9 Oct 2017 11:32:09 +0000 (12:32 +0100)
committerAmine Khaldi <amine.khaldi@reactos.org>
Mon, 9 Oct 2017 11:32:09 +0000 (12:32 +0100)
dll/win32/msi/action.c

index 8c17f3b..98aaec4 100644 (file)
@@ -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;