From 5baa1dfe8ba2a3bd4728bca118fe1de225f848d4 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 7 Mar 2024 09:41:29 -0800 Subject: Rename "bundle extension" to "bootstrapper extension" for more consistency Also renames WixToolet.BextUtil nupkg to WixToolset.BootstrapperExtensionApi. --- src/ext/NetFx/be/NetfxBootstrapperExtension.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/ext/NetFx/be/NetfxBootstrapperExtension.h (limited to 'src/ext/NetFx/be/NetfxBootstrapperExtension.h') diff --git a/src/ext/NetFx/be/NetfxBootstrapperExtension.h b/src/ext/NetFx/be/NetfxBootstrapperExtension.h new file mode 100644 index 00000000..36563dae --- /dev/null +++ b/src/ext/NetFx/be/NetfxBootstrapperExtension.h @@ -0,0 +1,17 @@ +#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. + + +// constants + +#define NETFX_BOOTSTRAPPER_EXTENSION_ID BOOTSTRAPPER_EXTENSION_DECORATION(L"NetfxBootstrapperExtension") + + +// function declarations + +HRESULT NetfxBootstrapperExtensionCreate( + __in HINSTANCE hInstance, + __in IBootstrapperExtensionEngine* pEngine, + __in const BOOTSTRAPPER_EXTENSION_CREATE_ARGS* pArgs, + __out IBootstrapperExtension** ppBootstrapperExtension + ); -- cgit v1.2.3-55-g6feb