diff options
Diffstat (limited to 'src/burn/engine/splashscreen.h')
-rw-r--r-- | src/burn/engine/splashscreen.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/burn/engine/splashscreen.h b/src/burn/engine/splashscreen.h new file mode 100644 index 00000000..8f8817c7 --- /dev/null +++ b/src/burn/engine/splashscreen.h | |||
@@ -0,0 +1,31 @@ | |||
1 | #pragma once | ||
2 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
3 | |||
4 | |||
5 | #if defined(__cplusplus) | ||
6 | extern "C" { | ||
7 | #endif | ||
8 | |||
9 | |||
10 | // constants | ||
11 | |||
12 | |||
13 | // structs | ||
14 | |||
15 | |||
16 | // functions | ||
17 | |||
18 | void SplashScreenCreate( | ||
19 | __in HINSTANCE hInstance, | ||
20 | __in_z_opt LPCWSTR wzCaption, | ||
21 | __out HWND* pHwnd | ||
22 | ); | ||
23 | HRESULT SplashScreenDisplayError( | ||
24 | __in BOOTSTRAPPER_DISPLAY display, | ||
25 | __in_z LPCWSTR wzBundleName, | ||
26 | __in HRESULT hrError | ||
27 | ); | ||
28 | |||
29 | #if defined(__cplusplus) | ||
30 | } | ||
31 | #endif | ||