From 0d3d54992104288e9ee0c834d0b96e8502fd2d42 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 11 Jan 2024 18:26:20 -0800 Subject: Move the BootstrapperApplication out of proc --- .../Bal/stdbas/inc/WixInternalUIBootstrapperApplication.h | 7 +++++++ src/ext/Bal/stdbas/inc/WixStandardBootstrapperApplication.h | 12 ++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 src/ext/Bal/stdbas/inc/WixInternalUIBootstrapperApplication.h create mode 100644 src/ext/Bal/stdbas/inc/WixStandardBootstrapperApplication.h (limited to 'src/ext/Bal/stdbas/inc') diff --git a/src/ext/Bal/stdbas/inc/WixInternalUIBootstrapperApplication.h b/src/ext/Bal/stdbas/inc/WixInternalUIBootstrapperApplication.h new file mode 100644 index 00000000..6dfef7d9 --- /dev/null +++ b/src/ext/Bal/stdbas/inc/WixInternalUIBootstrapperApplication.h @@ -0,0 +1,7 @@ +#pragma once +// 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. + +EXTERN_C HRESULT CreateWixInternalUIBootstrapperApplication( + __in HINSTANCE hInstance, + __out IBootstrapperApplication** ppApplication + ); diff --git a/src/ext/Bal/stdbas/inc/WixStandardBootstrapperApplication.h b/src/ext/Bal/stdbas/inc/WixStandardBootstrapperApplication.h new file mode 100644 index 00000000..c3742816 --- /dev/null +++ b/src/ext/Bal/stdbas/inc/WixStandardBootstrapperApplication.h @@ -0,0 +1,12 @@ +#pragma once +// 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. + +EXTERN_C HRESULT CreateWixPrerequisiteBootstrapperApplication( + __in HINSTANCE hInstance, + __out IBootstrapperApplication** ppApplication + ); + +EXTERN_C HRESULT CreateWixStandardBootstrapperApplication( + __in HINSTANCE hInstance, + __out IBootstrapperApplication** ppApplication + ); -- cgit v1.2.3-55-g6feb