mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 08:25:48 +00:00
[MSI] Addendum to 71bffdc
as I removed this unintentionally.
This commit is contained in:
parent
48b2714578
commit
15786900c9
1 changed files with 7 additions and 0 deletions
|
@ -4774,10 +4774,17 @@ static UINT ACTION_RemoveIniValues( MSIPACKAGE *package )
|
||||||
|
|
||||||
static void register_dll( const WCHAR *dll, BOOL unregister )
|
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[] =
|
static const WCHAR regW[] =
|
||||||
{'r','e','g','s','v','r','3','2','.','e','x','e',' ','\"','%','s','\"',0};
|
{'r','e','g','s','v','r','3','2','.','e','x','e',' ','\"','%','s','\"',0};
|
||||||
static const WCHAR unregW[] =
|
static const WCHAR unregW[] =
|
||||||
{'r','e','g','s','v','r','3','2','.','e','x','e',' ','/','u',' ','\"','%','s','\"',0};
|
{'r','e','g','s','v','r','3','2','.','e','x','e',' ','/','u',' ','\"','%','s','\"',0};
|
||||||
|
#endif /* __REACTOS__ */
|
||||||
PROCESS_INFORMATION pi;
|
PROCESS_INFORMATION pi;
|
||||||
STARTUPINFOW si;
|
STARTUPINFOW si;
|
||||||
WCHAR *cmd;
|
WCHAR *cmd;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue