aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/inc/BootstrapperExtension.h
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2024-03-21 00:59:21 -0700
committerRob Mensching <rob@firegiant.com>2024-03-21 13:07:14 -0700
commit90cdebbe94c7f60db86965ffb97d9ba51d0bc9fc (patch)
tree8701442f92b68fc5d7d24ebc09449419b6824cd5 /src/api/burn/inc/BootstrapperExtension.h
parenta2b75ebed82be8c488f2840c359a512e865d682c (diff)
downloadwix-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/inc/BootstrapperExtension.h')
-rw-r--r--src/api/burn/inc/BootstrapperExtension.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/api/burn/inc/BootstrapperExtension.h b/src/api/burn/inc/BootstrapperExtension.h
deleted file mode 100644
index b1fa6408..00000000
--- a/src/api/burn/inc/BootstrapperExtension.h
+++ /dev/null
@@ -1,61 +0,0 @@
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 <BootstrapperExtensionEngine.h>
5
6#if defined(__cplusplus)
7extern "C" {
8#endif
9
10enum BOOTSTRAPPER_EXTENSION_MESSAGE
11{
12 BOOTSTRAPPER_EXTENSION_MESSAGE_SEARCH,
13};
14
15typedef struct _BOOTSTRAPPER_EXTENSION_SEARCH_ARGS
16{
17 DWORD cbSize;
18 LPCWSTR wzId;
19 LPCWSTR wzVariable;
20} BOOTSTRAPPER_EXTENSION_SEARCH_ARGS;
21
22typedef struct _BOOTSTRAPPER_EXTENSION_SEARCH_RESULTS
23{
24 DWORD cbSize;
25} BOOTSTRAPPER_EXTENSION_SEARCH_RESULTS;
26
27extern "C" typedef HRESULT(WINAPI *PFN_BOOTSTRAPPER_EXTENSION_PROC)(
28 __in BOOTSTRAPPER_EXTENSION_MESSAGE message,
29 __in const LPVOID pvArgs,
30 __inout LPVOID pvResults,
31 __in_opt LPVOID pvContext
32 );
33
34typedef struct _BOOTSTRAPPER_EXTENSION_CREATE_ARGS
35{
36 DWORD cbSize;
37 DWORD64 qwEngineAPIVersion;
38 PFN_BOOTSTRAPPER_EXTENSION_ENGINE_PROC pfnBootstrapperExtensionEngineProc;
39 LPVOID pvBootstrapperExtensionEngineProcContext;
40 LPCWSTR wzBootstrapperWorkingFolder;
41 LPCWSTR wzBootstrapperExtensionDataPath;
42 LPCWSTR wzExtensionId;
43} BOOTSTRAPPER_EXTENSION_CREATE_ARGS;
44
45typedef struct _BOOTSTRAPPER_EXTENSION_CREATE_RESULTS
46{
47 DWORD cbSize;
48 PFN_BOOTSTRAPPER_EXTENSION_PROC pfnBootstrapperExtensionProc;
49 LPVOID pvBootstrapperExtensionProcContext;
50} BOOTSTRAPPER_EXTENSION_CREATE_RESULTS;
51
52extern "C" typedef HRESULT(WINAPI *PFN_BOOTSTRAPPER_EXTENSION_CREATE)(
53 __in const BOOTSTRAPPER_EXTENSION_CREATE_ARGS* pArgs,
54 __inout BOOTSTRAPPER_EXTENSION_CREATE_RESULTS* pResults
55 );
56
57extern "C" typedef void (WINAPI *PFN_BOOTSTRAPPER_EXTENSION_DESTROY)();
58
59#if defined(__cplusplus)
60}
61#endif