diff options
| author | Rob Mensching <rob@firegiant.com> | 2024-03-21 00:59:21 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2024-03-21 13:07:14 -0700 |
| commit | 90cdebbe94c7f60db86965ffb97d9ba51d0bc9fc (patch) | |
| tree | 8701442f92b68fc5d7d24ebc09449419b6824cd5 /src/api/burn/balutil/inc/BootstrapperApplication.h | |
| parent | a2b75ebed82be8c488f2840c359a512e865d682c (diff) | |
| download | wix-90cdebbe94c7f60db86965ffb97d9ba51d0bc9fc.tar.gz wix-90cdebbe94c7f60db86965ffb97d9ba51d0bc9fc.tar.bz2 wix-90cdebbe94c7f60db86965ffb97d9ba51d0bc9fc.zip | |
Simplify BootstrapperApplication header files
Take this breaking change opportunity to simplify the header files used by
BA devs.
Diffstat (limited to 'src/api/burn/balutil/inc/BootstrapperApplication.h')
| -rw-r--r-- | src/api/burn/balutil/inc/BootstrapperApplication.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/api/burn/balutil/inc/BootstrapperApplication.h b/src/api/burn/balutil/inc/BootstrapperApplication.h new file mode 100644 index 00000000..d11fccf0 --- /dev/null +++ b/src/api/burn/balutil/inc/BootstrapperApplication.h | |||
| @@ -0,0 +1,21 @@ | |||
| 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 | #include "IBootstrapperApplication.h" | ||
| 5 | |||
| 6 | #if defined(__cplusplus) | ||
| 7 | extern "C" { | ||
| 8 | #endif | ||
| 9 | |||
| 10 | /******************************************************************* | ||
| 11 | BootstrapperApplicationRun - runs the IBootstrapperApplication until | ||
| 12 | the application quits. | ||
| 13 | |||
| 14 | ********************************************************************/ | ||
| 15 | HRESULT __stdcall BootstrapperApplicationRun( | ||
| 16 | __in IBootstrapperApplication* pApplication | ||
| 17 | ); | ||
| 18 | |||
| 19 | #if defined(__cplusplus) | ||
| 20 | } | ||
| 21 | #endif | ||
