diff options
author | Rob Mensching <rob@firegiant.com> | 2024-03-06 14:48:10 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-03-07 10:55:57 -0800 |
commit | 3d2d46f62fc01e2653d0251ad9703090574e7c41 (patch) | |
tree | ffdf7dce6c646f38b5e3ad8325c2ce78ca891a1a /src/api/burn/inc/BundleExtension.h | |
parent | a8504dc4eb1c2d09965b0858699ac737336ef3c1 (diff) | |
download | wix-3d2d46f62fc01e2653d0251ad9703090574e7c41.tar.gz wix-3d2d46f62fc01e2653d0251ad9703090574e7c41.tar.bz2 wix-3d2d46f62fc01e2653d0251ad9703090574e7c41.zip |
Better .nupkg names
Diffstat (limited to 'src/api/burn/inc/BundleExtension.h')
-rw-r--r-- | src/api/burn/inc/BundleExtension.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/api/burn/inc/BundleExtension.h b/src/api/burn/inc/BundleExtension.h new file mode 100644 index 00000000..17acff6e --- /dev/null +++ b/src/api/burn/inc/BundleExtension.h | |||
@@ -0,0 +1,61 @@ | |||
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 <BundleExtensionEngine.h> | ||
5 | |||
6 | #if defined(__cplusplus) | ||
7 | extern "C" { | ||
8 | #endif | ||
9 | |||
10 | enum BUNDLE_EXTENSION_MESSAGE | ||
11 | { | ||
12 | BUNDLE_EXTENSION_MESSAGE_SEARCH, | ||
13 | }; | ||
14 | |||
15 | typedef struct _BUNDLE_EXTENSION_SEARCH_ARGS | ||
16 | { | ||
17 | DWORD cbSize; | ||
18 | LPCWSTR wzId; | ||
19 | LPCWSTR wzVariable; | ||
20 | } BUNDLE_EXTENSION_SEARCH_ARGS; | ||
21 | |||
22 | typedef struct _BUNDLE_EXTENSION_SEARCH_RESULTS | ||
23 | { | ||
24 | DWORD cbSize; | ||
25 | } BUNDLE_EXTENSION_SEARCH_RESULTS; | ||
26 | |||
27 | extern "C" typedef HRESULT(WINAPI *PFN_BUNDLE_EXTENSION_PROC)( | ||
28 | __in BUNDLE_EXTENSION_MESSAGE message, | ||
29 | __in const LPVOID pvArgs, | ||
30 | __inout LPVOID pvResults, | ||
31 | __in_opt LPVOID pvContext | ||
32 | ); | ||
33 | |||
34 | typedef struct _BUNDLE_EXTENSION_CREATE_ARGS | ||
35 | { | ||
36 | DWORD cbSize; | ||
37 | DWORD64 qwEngineAPIVersion; | ||
38 | PFN_BUNDLE_EXTENSION_ENGINE_PROC pfnBundleExtensionEngineProc; | ||
39 | LPVOID pvBundleExtensionEngineProcContext; | ||
40 | LPCWSTR wzBootstrapperWorkingFolder; | ||
41 | LPCWSTR wzBundleExtensionDataPath; | ||
42 | LPCWSTR wzExtensionId; | ||
43 | } BUNDLE_EXTENSION_CREATE_ARGS; | ||
44 | |||
45 | typedef struct _BUNDLE_EXTENSION_CREATE_RESULTS | ||
46 | { | ||
47 | DWORD cbSize; | ||
48 | PFN_BUNDLE_EXTENSION_PROC pfnBundleExtensionProc; | ||
49 | LPVOID pvBundleExtensionProcContext; | ||
50 | } BUNDLE_EXTENSION_CREATE_RESULTS; | ||
51 | |||
52 | extern "C" typedef HRESULT(WINAPI *PFN_BUNDLE_EXTENSION_CREATE)( | ||
53 | __in const BUNDLE_EXTENSION_CREATE_ARGS* pArgs, | ||
54 | __inout BUNDLE_EXTENSION_CREATE_RESULTS* pResults | ||
55 | ); | ||
56 | |||
57 | extern "C" typedef void (WINAPI *PFN_BUNDLE_EXTENSION_DESTROY)(); | ||
58 | |||
59 | #if defined(__cplusplus) | ||
60 | } | ||
61 | #endif | ||