aboutsummaryrefslogtreecommitdiff
path: root/src/engine/EngineForExtension.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-03-29 19:14:06 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-03-30 21:40:34 +1000
commit0354a00e74492ad8d930c5bf499bc8606e48b1c9 (patch)
tree5640d653449287699b4cd08cb6b64fe27c4fa8af /src/engine/EngineForExtension.h
parent6ce359752afac0d3d70c2cf5fabd7d92859564ee (diff)
downloadwix-0354a00e74492ad8d930c5bf499bc8606e48b1c9.tar.gz
wix-0354a00e74492ad8d930c5bf499bc8606e48b1c9.tar.bz2
wix-0354a00e74492ad8d930c5bf499bc8606e48b1c9.zip
Add support for BundleExtensions.
Diffstat (limited to 'src/engine/EngineForExtension.h')
-rw-r--r--src/engine/EngineForExtension.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/engine/EngineForExtension.h b/src/engine/EngineForExtension.h
new file mode 100644
index 00000000..bad5f08a
--- /dev/null
+++ b/src/engine/EngineForExtension.h
@@ -0,0 +1,27 @@
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
5#if defined(__cplusplus)
6extern "C" {
7#endif
8
9// structs
10
11typedef struct _BURN_EXTENSION_ENGINE_CONTEXT
12{
13 BURN_ENGINE_STATE* pEngineState;
14} BURN_EXTENSION_ENGINE_CONTEXT;
15
16// function declarations
17
18HRESULT WINAPI EngineForExtensionProc(
19 __in BUNDLE_EXTENSION_ENGINE_MESSAGE message,
20 __in const LPVOID pvArgs,
21 __inout LPVOID pvResults,
22 __in_opt LPVOID pvContext
23 );
24
25#if defined(__cplusplus)
26}
27#endif