Perform ExecuteAction at UILevel 2.

This commit is contained in:
Aric Stewart 2005-06-24 12:14:52 +00:00 committed by Alexandre Julliard
parent b9c6b85779
commit 25f1e75d43
1 changed files with 8 additions and 0 deletions

View File

@ -3841,8 +3841,16 @@ end:
static UINT ACTION_ExecuteAction(MSIPACKAGE *package)
{
static const WCHAR szUILevel[] = {'U','I','L','e','v','e','l',0};
static const WCHAR szTwo[] = {'2',0};
UINT rc;
LPWSTR level;
level = load_dynamic_property(package,szUILevel,NULL);
MSI_SetPropertyW(package,szUILevel,szTwo);
rc = ACTION_ProcessExecSequence(package,FALSE);
MSI_SetPropertyW(package,szUILevel,level);
HeapFree(GetProcessHeap(),0,level);
return rc;
}