diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-06-08 11:21:53 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-06-09 13:47:53 -0500 |
commit | d47c73dbcd0a314cf3346b9b1294063ed4a124c4 (patch) | |
tree | 8ad3f401edd856ed7aaebba0306ee6d8972f2d13 /src/burn | |
parent | 881a6c9bd0c3b3134277605824dd5a9ceaaf176d (diff) | |
download | wix-d47c73dbcd0a314cf3346b9b1294063ed4a124c4.tar.gz wix-d47c73dbcd0a314cf3346b9b1294063ed4a124c4.tar.bz2 wix-d47c73dbcd0a314cf3346b9b1294063ed4a124c4.zip |
Show Burn splash screen earlier.
Make the initial Burn process show the splash screen, and show it before parsing the manifest.
Fixes half of #5300
Diffstat (limited to 'src/burn')
-rw-r--r-- | src/burn/engine/core.cpp | 45 | ||||
-rw-r--r-- | src/burn/engine/core.h | 5 | ||||
-rw-r--r-- | src/burn/engine/engine.cpp | 15 | ||||
-rw-r--r-- | src/burn/engine/splashscreen.cpp | 39 | ||||
-rw-r--r-- | src/burn/engine/splashscreen.h | 14 | ||||
-rw-r--r-- | src/burn/engine/userexperience.cpp | 7 | ||||
-rw-r--r-- | src/burn/engine/userexperience.h | 1 |
7 files changed, 107 insertions, 19 deletions
diff --git a/src/burn/engine/core.cpp b/src/burn/engine/core.cpp index dc976eb4..e7e8e48d 100644 --- a/src/burn/engine/core.cpp +++ b/src/burn/engine/core.cpp | |||
@@ -1060,7 +1060,7 @@ extern "C" HRESULT CoreAppendFileHandleAttachedToCommandLine( | |||
1060 | ExitWithLastError(hr, "Failed to duplicate file handle for attached container."); | 1060 | ExitWithLastError(hr, "Failed to duplicate file handle for attached container."); |
1061 | } | 1061 | } |
1062 | 1062 | ||
1063 | hr = StrAllocFormattedSecure(psczCommandLine, L"%ls -%ls=%Iu", *psczCommandLine, BURN_COMMANDLINE_SWITCH_FILEHANDLE_ATTACHED, reinterpret_cast<size_t>(hExecutableFile)); | 1063 | hr = StrAllocConcatFormattedSecure(psczCommandLine, L" -%ls=%Iu", BURN_COMMANDLINE_SWITCH_FILEHANDLE_ATTACHED, reinterpret_cast<size_t>(hExecutableFile)); |
1064 | ExitOnFailure(hr, "Failed to append the file handle to the command line."); | 1064 | ExitOnFailure(hr, "Failed to append the file handle to the command line."); |
1065 | 1065 | ||
1066 | *phExecutableFile = hExecutableFile; | 1066 | *phExecutableFile = hExecutableFile; |
@@ -1088,12 +1088,12 @@ extern "C" HRESULT CoreAppendFileHandleSelfToCommandLine( | |||
1088 | hExecutableFile = ::CreateFileW(wzExecutablePath, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_DELETE, &securityAttributes, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); | 1088 | hExecutableFile = ::CreateFileW(wzExecutablePath, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_DELETE, &securityAttributes, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); |
1089 | if (INVALID_HANDLE_VALUE != hExecutableFile) | 1089 | if (INVALID_HANDLE_VALUE != hExecutableFile) |
1090 | { | 1090 | { |
1091 | hr = StrAllocFormattedSecure(psczCommandLine, L"%ls -%ls=%Iu", *psczCommandLine, BURN_COMMANDLINE_SWITCH_FILEHANDLE_SELF, reinterpret_cast<size_t>(hExecutableFile)); | 1091 | hr = StrAllocConcatFormattedSecure(psczCommandLine, L" -%ls=%Iu", BURN_COMMANDLINE_SWITCH_FILEHANDLE_SELF, reinterpret_cast<size_t>(hExecutableFile)); |
1092 | ExitOnFailure(hr, "Failed to append the file handle to the command line."); | 1092 | ExitOnFailure(hr, "Failed to append the file handle to the command line."); |
1093 | 1093 | ||
1094 | if (psczObfuscatedCommandLine) | 1094 | if (psczObfuscatedCommandLine) |
1095 | { | 1095 | { |
1096 | hr = StrAllocFormatted(psczObfuscatedCommandLine, L"%ls -%ls=%Iu", *psczObfuscatedCommandLine, BURN_COMMANDLINE_SWITCH_FILEHANDLE_SELF, reinterpret_cast<size_t>(hExecutableFile)); | 1096 | hr = StrAllocConcatFormatted(psczObfuscatedCommandLine, L" -%ls=%Iu", BURN_COMMANDLINE_SWITCH_FILEHANDLE_SELF, reinterpret_cast<size_t>(hExecutableFile)); |
1097 | ExitOnFailure(hr, "Failed to append the file handle to the obfuscated command line."); | 1097 | ExitOnFailure(hr, "Failed to append the file handle to the obfuscated command line."); |
1098 | } | 1098 | } |
1099 | 1099 | ||
@@ -1107,6 +1107,23 @@ LExit: | |||
1107 | return hr; | 1107 | return hr; |
1108 | } | 1108 | } |
1109 | 1109 | ||
1110 | extern "C" HRESULT CoreAppendSplashScreenWindowToCommandLine( | ||
1111 | __in_opt HWND hwndSplashScreen, | ||
1112 | __deref_inout_z LPWSTR* psczCommandLine | ||
1113 | ) | ||
1114 | { | ||
1115 | HRESULT hr = S_OK; | ||
1116 | |||
1117 | if (hwndSplashScreen) | ||
1118 | { | ||
1119 | hr = StrAllocConcatFormattedSecure(psczCommandLine, L" -%ls=%Iu", BURN_COMMANDLINE_SWITCH_SPLASH_SCREEN, reinterpret_cast<size_t>(hwndSplashScreen)); | ||
1120 | ExitOnFailure(hr, "Failed to append the splash screen window to the command line."); | ||
1121 | } | ||
1122 | |||
1123 | LExit: | ||
1124 | return hr; | ||
1125 | } | ||
1126 | |||
1110 | extern "C" void CoreCleanup( | 1127 | extern "C" void CoreCleanup( |
1111 | __in BURN_ENGINE_STATE* pEngineState | 1128 | __in BURN_ENGINE_STATE* pEngineState |
1112 | ) | 1129 | ) |
@@ -1571,6 +1588,28 @@ extern "C" HRESULT CoreParseCommandLine( | |||
1571 | } | 1588 | } |
1572 | } | 1589 | } |
1573 | } | 1590 | } |
1591 | else if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, NORM_IGNORECASE, &argv[i][1], lstrlenW(BURN_COMMANDLINE_SWITCH_SPLASH_SCREEN), BURN_COMMANDLINE_SWITCH_SPLASH_SCREEN, lstrlenW(BURN_COMMANDLINE_SWITCH_SPLASH_SCREEN))) | ||
1592 | { | ||
1593 | LPCWSTR wzParam = &argv[i][2 + lstrlenW(BURN_COMMANDLINE_SWITCH_SPLASH_SCREEN)]; | ||
1594 | if (L'=' != wzParam[-1] || L'\0' == wzParam[0]) | ||
1595 | { | ||
1596 | fInvalidCommandLine = TRUE; | ||
1597 | TraceLog(E_INVALIDARG, "Missing required parameter for switch: %ls", BURN_COMMANDLINE_SWITCH_SPLASH_SCREEN); | ||
1598 | } | ||
1599 | else | ||
1600 | { | ||
1601 | hr = StrStringToUInt64(wzParam, 0, &qw); | ||
1602 | if (FAILED(hr)) | ||
1603 | { | ||
1604 | TraceLog(hr, "Failed to parse splash screen window: '%ls'", wzParam); | ||
1605 | hr = S_OK; | ||
1606 | } | ||
1607 | else | ||
1608 | { | ||
1609 | pCommand->hwndSplashScreen = (HWND)qw; | ||
1610 | } | ||
1611 | } | ||
1612 | } | ||
1574 | else if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, NORM_IGNORECASE, &argv[i][1], lstrlenW(BURN_COMMANDLINE_SWITCH_PREFIX), BURN_COMMANDLINE_SWITCH_PREFIX, lstrlenW(BURN_COMMANDLINE_SWITCH_PREFIX))) | 1613 | else if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, NORM_IGNORECASE, &argv[i][1], lstrlenW(BURN_COMMANDLINE_SWITCH_PREFIX), BURN_COMMANDLINE_SWITCH_PREFIX, lstrlenW(BURN_COMMANDLINE_SWITCH_PREFIX))) |
1575 | { | 1614 | { |
1576 | // Skip (but log) any other private burn switches we don't recognize, so that | 1615 | // Skip (but log) any other private burn switches we don't recognize, so that |
diff --git a/src/burn/engine/core.h b/src/burn/engine/core.h index 7b1be47e..0a92d64f 100644 --- a/src/burn/engine/core.h +++ b/src/burn/engine/core.h | |||
@@ -29,6 +29,7 @@ const LPCWSTR BURN_COMMANDLINE_SWITCH_IGNOREDEPENDENCIES = L"burn.ignoredependen | |||
29 | const LPCWSTR BURN_COMMANDLINE_SWITCH_ANCESTORS = L"burn.ancestors"; | 29 | const LPCWSTR BURN_COMMANDLINE_SWITCH_ANCESTORS = L"burn.ancestors"; |
30 | const LPCWSTR BURN_COMMANDLINE_SWITCH_FILEHANDLE_ATTACHED = L"burn.filehandle.attached"; | 30 | const LPCWSTR BURN_COMMANDLINE_SWITCH_FILEHANDLE_ATTACHED = L"burn.filehandle.attached"; |
31 | const LPCWSTR BURN_COMMANDLINE_SWITCH_FILEHANDLE_SELF = L"burn.filehandle.self"; | 31 | const LPCWSTR BURN_COMMANDLINE_SWITCH_FILEHANDLE_SELF = L"burn.filehandle.self"; |
32 | const LPCWSTR BURN_COMMANDLINE_SWITCH_SPLASH_SCREEN = L"burn.splash.screen"; | ||
32 | const LPCWSTR BURN_COMMANDLINE_SWITCH_PREFIX = L"burn."; | 33 | const LPCWSTR BURN_COMMANDLINE_SWITCH_PREFIX = L"burn."; |
33 | 34 | ||
34 | const LPCWSTR BURN_BUNDLE_LAYOUT_DIRECTORY = L"WixBundleLayoutDirectory"; | 35 | const LPCWSTR BURN_BUNDLE_LAYOUT_DIRECTORY = L"WixBundleLayoutDirectory"; |
@@ -228,6 +229,10 @@ HRESULT CoreAppendFileHandleSelfToCommandLine( | |||
228 | __deref_inout_z LPWSTR* psczCommandLine, | 229 | __deref_inout_z LPWSTR* psczCommandLine, |
229 | __deref_inout_z_opt LPWSTR* psczObfuscatedCommandLine | 230 | __deref_inout_z_opt LPWSTR* psczObfuscatedCommandLine |
230 | ); | 231 | ); |
232 | HRESULT CoreAppendSplashScreenWindowToCommandLine( | ||
233 | __in_opt HWND hwndSplashScreen, | ||
234 | __deref_inout_z LPWSTR* psczCommandLine | ||
235 | ); | ||
231 | void CoreCleanup( | 236 | void CoreCleanup( |
232 | __in BURN_ENGINE_STATE* pEngineState | 237 | __in BURN_ENGINE_STATE* pEngineState |
233 | ); | 238 | ); |
diff --git a/src/burn/engine/engine.cpp b/src/burn/engine/engine.cpp index 1314ddc6..4323b540 100644 --- a/src/burn/engine/engine.cpp +++ b/src/burn/engine/engine.cpp | |||
@@ -122,6 +122,11 @@ extern "C" HRESULT EngineRun( | |||
122 | 122 | ||
123 | engineState.command.nCmdShow = nCmdShow; | 123 | engineState.command.nCmdShow = nCmdShow; |
124 | 124 | ||
125 | if (BURN_MODE_ELEVATED != engineState.mode && BOOTSTRAPPER_DISPLAY_NONE < engineState.command.display && !engineState.command.hwndSplashScreen) | ||
126 | { | ||
127 | SplashScreenCreate(hInstance, NULL, &engineState.command.hwndSplashScreen); | ||
128 | } | ||
129 | |||
125 | // initialize platform layer | 130 | // initialize platform layer |
126 | PlatformInitialize(); | 131 | PlatformInitialize(); |
127 | 132 | ||
@@ -452,7 +457,10 @@ static HRESULT RunUntrusted( | |||
452 | hr = CoreAppendFileHandleSelfToCommandLine(wzCleanRoomBundlePath, &hFileSelf, &sczParameters, NULL); | 457 | hr = CoreAppendFileHandleSelfToCommandLine(wzCleanRoomBundlePath, &hFileSelf, &sczParameters, NULL); |
453 | ExitOnFailure(hr, "Failed to append %ls", BURN_COMMANDLINE_SWITCH_FILEHANDLE_SELF); | 458 | ExitOnFailure(hr, "Failed to append %ls", BURN_COMMANDLINE_SWITCH_FILEHANDLE_SELF); |
454 | 459 | ||
455 | hr = StrAllocFormattedSecure(&sczParameters, L"%ls %ls", sczParameters, wzCommandLine); | 460 | hr = CoreAppendSplashScreenWindowToCommandLine(pEngineState->command.hwndSplashScreen, &sczParameters); |
461 | ExitOnFailure(hr, "Failed to append %ls", BURN_COMMANDLINE_SWITCH_SPLASH_SCREEN); | ||
462 | |||
463 | hr = StrAllocConcatFormattedSecure(&sczParameters, L" %ls", wzCommandLine); | ||
456 | ExitOnFailure(hr, "Failed to append original command line."); | 464 | ExitOnFailure(hr, "Failed to append original command line."); |
457 | 465 | ||
458 | #ifdef ENABLE_UNELEVATE | 466 | #ifdef ENABLE_UNELEVATE |
@@ -525,11 +533,6 @@ static HRESULT RunNormal( | |||
525 | ExitFunction1(hr = S_OK); | 533 | ExitFunction1(hr = S_OK); |
526 | } | 534 | } |
527 | 535 | ||
528 | if (pEngineState->userExperience.fSplashScreen && BOOTSTRAPPER_DISPLAY_NONE < pEngineState->command.display) | ||
529 | { | ||
530 | SplashScreenCreate(hInstance, NULL, &pEngineState->command.hwndSplashScreen); | ||
531 | } | ||
532 | |||
533 | // Create a top-level window to handle system messages. | 536 | // Create a top-level window to handle system messages. |
534 | hr = UiCreateMessageWindow(hInstance, pEngineState); | 537 | hr = UiCreateMessageWindow(hInstance, pEngineState); |
535 | ExitOnFailure(hr, "Failed to create the message window."); | 538 | ExitOnFailure(hr, "Failed to create the message window."); |
diff --git a/src/burn/engine/splashscreen.cpp b/src/burn/engine/splashscreen.cpp index 90bd5203..ff61996f 100644 --- a/src/burn/engine/splashscreen.cpp +++ b/src/burn/engine/splashscreen.cpp | |||
@@ -3,7 +3,6 @@ | |||
3 | #include "precomp.h" | 3 | #include "precomp.h" |
4 | 4 | ||
5 | #define BURN_SPLASHSCREEN_CLASS_WINDOW L"WixBurnSplashScreen" | 5 | #define BURN_SPLASHSCREEN_CLASS_WINDOW L"WixBurnSplashScreen" |
6 | #define IDB_SPLASHSCREEN 1 | ||
7 | 6 | ||
8 | // struct | 7 | // struct |
9 | 8 | ||
@@ -21,12 +20,17 @@ struct SPLASHSCREEN_CONTEXT | |||
21 | HANDLE hInitializedEvent; | 20 | HANDLE hInitializedEvent; |
22 | HINSTANCE hInstance; | 21 | HINSTANCE hInstance; |
23 | LPCWSTR wzCaption; | 22 | LPCWSTR wzCaption; |
23 | BURN_SPLASH_SCREEN_CONFIGURATION* pSplashScreenConfiguration; | ||
24 | 24 | ||
25 | HWND* pHwnd; | 25 | HWND* pHwnd; |
26 | }; | 26 | }; |
27 | 27 | ||
28 | // internal function definitions | 28 | // internal function definitions |
29 | 29 | ||
30 | static HRESULT LoadConfiguration( | ||
31 | __in HINSTANCE hInstance, | ||
32 | __in BURN_SPLASH_SCREEN_CONFIGURATION** ppSplashScreenConfiguration | ||
33 | ); | ||
30 | static DWORD WINAPI ThreadProc( | 34 | static DWORD WINAPI ThreadProc( |
31 | __in LPVOID pvContext | 35 | __in LPVOID pvContext |
32 | ); | 36 | ); |
@@ -74,6 +78,19 @@ extern "C" void SplashScreenCreate( | |||
74 | HANDLE rgSplashScreenEvents[2] = { }; | 78 | HANDLE rgSplashScreenEvents[2] = { }; |
75 | DWORD dwSplashScreenThreadId = 0; | 79 | DWORD dwSplashScreenThreadId = 0; |
76 | 80 | ||
81 | hr = LoadConfiguration(hInstance, &context.pSplashScreenConfiguration); | ||
82 | ExitOnFailure(hr, "Failed to load splash screen configuration."); | ||
83 | |||
84 | switch (context.pSplashScreenConfiguration->type) | ||
85 | { | ||
86 | case BURN_SPLASH_SCREEN_TYPE_NONE: | ||
87 | ExitFunction(); | ||
88 | case BURN_SPLASH_SCREEN_TYPE_BITMAP_RESOURCE: | ||
89 | break; | ||
90 | default: | ||
91 | ExitWithRootFailure(hr, E_INVALIDDATA, "Invalid splash screen type: %i", context.pSplashScreenConfiguration->type); | ||
92 | } | ||
93 | |||
77 | rgSplashScreenEvents[0] = ::CreateEventW(NULL, TRUE, FALSE, NULL); | 94 | rgSplashScreenEvents[0] = ::CreateEventW(NULL, TRUE, FALSE, NULL); |
78 | ExitOnNullWithLastError(rgSplashScreenEvents[0], hr, "Failed to create modal event."); | 95 | ExitOnNullWithLastError(rgSplashScreenEvents[0], hr, "Failed to create modal event."); |
79 | 96 | ||
@@ -125,6 +142,24 @@ LExit: | |||
125 | } | 142 | } |
126 | 143 | ||
127 | 144 | ||
145 | static HRESULT LoadConfiguration( | ||
146 | __in HINSTANCE hInstance, | ||
147 | __in BURN_SPLASH_SCREEN_CONFIGURATION** ppSplashScreenConfiguration | ||
148 | ) | ||
149 | { | ||
150 | HRESULT hr = S_OK; | ||
151 | DWORD cbData = 0; | ||
152 | |||
153 | hr = ResReadData(hInstance, MAKEINTRESOURCEA(IDD_BURN_SPLASH_SCREEN_CONFIGURATION), reinterpret_cast<PVOID*>(ppSplashScreenConfiguration), &cbData); | ||
154 | ExitOnFailure(hr, "Failed to read splash screen configuration resource."); | ||
155 | |||
156 | AssertSz(sizeof(BURN_SPLASH_SCREEN_CONFIGURATION) == cbData, "Splash screen configuration resource size is wrong"); | ||
157 | |||
158 | LExit: | ||
159 | return hr; | ||
160 | } | ||
161 | |||
162 | |||
128 | static DWORD WINAPI ThreadProc( | 163 | static DWORD WINAPI ThreadProc( |
129 | __in LPVOID pvContext | 164 | __in LPVOID pvContext |
130 | ) | 165 | ) |
@@ -242,7 +277,7 @@ static HRESULT LoadSplashScreen( | |||
242 | RECT* pMonitorRect = NULL; | 277 | RECT* pMonitorRect = NULL; |
243 | 278 | ||
244 | pSplashScreen->nDpi = USER_DEFAULT_SCREEN_DPI; | 279 | pSplashScreen->nDpi = USER_DEFAULT_SCREEN_DPI; |
245 | pSplashScreen->hBitmap = ::LoadBitmapW(pContext->hInstance, MAKEINTRESOURCEW(IDB_SPLASHSCREEN)); | 280 | pSplashScreen->hBitmap = ::LoadBitmapW(pContext->hInstance, MAKEINTRESOURCEW(pContext->pSplashScreenConfiguration->wResourceId)); |
246 | ExitOnNullWithLastError(pSplashScreen->hBitmap, hr, "Failed to load splash screen bitmap."); | 281 | ExitOnNullWithLastError(pSplashScreen->hBitmap, hr, "Failed to load splash screen bitmap."); |
247 | 282 | ||
248 | ::GetObject(pSplashScreen->hBitmap, sizeof(bmp), static_cast<void*>(&bmp)); | 283 | ::GetObject(pSplashScreen->hBitmap, sizeof(bmp), static_cast<void*>(&bmp)); |
diff --git a/src/burn/engine/splashscreen.h b/src/burn/engine/splashscreen.h index 8f8817c7..470c5930 100644 --- a/src/burn/engine/splashscreen.h +++ b/src/burn/engine/splashscreen.h | |||
@@ -6,12 +6,26 @@ | |||
6 | extern "C" { | 6 | extern "C" { |
7 | #endif | 7 | #endif |
8 | 8 | ||
9 | // IDD_BURN_SPLASH_SCREEN_CONFIGURATION, BURN_SPLASH_SCREEN_TYPE, and BURN_SPLASH_SCREEN_CONFIGURATION must stay in sync with src\wix\WixToolset.Core.Burn\Bundles\CreateBundleExeCommand.cs | ||
10 | |||
11 | #define IDD_BURN_SPLASH_SCREEN_CONFIGURATION 1 | ||
9 | 12 | ||
10 | // constants | 13 | // constants |
11 | 14 | ||
15 | enum BURN_SPLASH_SCREEN_TYPE | ||
16 | { | ||
17 | BURN_SPLASH_SCREEN_TYPE_NONE, | ||
18 | BURN_SPLASH_SCREEN_TYPE_BITMAP_RESOURCE, | ||
19 | }; | ||
12 | 20 | ||
13 | // structs | 21 | // structs |
14 | 22 | ||
23 | typedef struct _BURN_SPLASH_SCREEN_CONFIGURATION | ||
24 | { | ||
25 | BURN_SPLASH_SCREEN_TYPE type; | ||
26 | WORD wResourceId; | ||
27 | } BURN_SPLASH_SCREEN_CONFIGURATION; | ||
28 | |||
15 | 29 | ||
16 | // functions | 30 | // functions |
17 | 31 | ||
diff --git a/src/burn/engine/userexperience.cpp b/src/burn/engine/userexperience.cpp index 07f4b831..88655774 100644 --- a/src/burn/engine/userexperience.cpp +++ b/src/burn/engine/userexperience.cpp | |||
@@ -54,13 +54,6 @@ extern "C" HRESULT UserExperienceParseFromXml( | |||
54 | } | 54 | } |
55 | ExitOnFailure(hr, "Failed to select user experience node."); | 55 | ExitOnFailure(hr, "Failed to select user experience node."); |
56 | 56 | ||
57 | // parse splash screen | ||
58 | hr = XmlGetYesNoAttribute(pixnUserExperienceNode, L"SplashScreen", &pUserExperience->fSplashScreen); | ||
59 | if (E_NOTFOUND != hr) | ||
60 | { | ||
61 | ExitOnFailure(hr, "Failed to to get UX/@SplashScreen"); | ||
62 | } | ||
63 | |||
64 | // parse payloads | 57 | // parse payloads |
65 | hr = PayloadsParseFromXml(&pUserExperience->payloads, NULL, NULL, pixnUserExperienceNode); | 58 | hr = PayloadsParseFromXml(&pUserExperience->payloads, NULL, NULL, pixnUserExperienceNode); |
66 | ExitOnFailure(hr, "Failed to parse user experience payloads."); | 59 | ExitOnFailure(hr, "Failed to parse user experience payloads."); |
diff --git a/src/burn/engine/userexperience.h b/src/burn/engine/userexperience.h index 56bc3239..6a5ae697 100644 --- a/src/burn/engine/userexperience.h +++ b/src/burn/engine/userexperience.h | |||
@@ -19,7 +19,6 @@ typedef struct _BOOTSTRAPPER_ENGINE_CONTEXT BOOTSTRAPPER_ENGINE_CONTEXT; | |||
19 | 19 | ||
20 | typedef struct _BURN_USER_EXPERIENCE | 20 | typedef struct _BURN_USER_EXPERIENCE |
21 | { | 21 | { |
22 | BOOL fSplashScreen; | ||
23 | BURN_PAYLOADS payloads; | 22 | BURN_PAYLOADS payloads; |
24 | 23 | ||
25 | HMODULE hUXModule; | 24 | HMODULE hUXModule; |