aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/EngineForExtension.h
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-22 17:06:54 -0700
committerRob Mensching <rob@firegiant.com>2021-04-29 16:36:06 -0700
commitaf10c45d7b3a44af0b461a557847fe03263dcc10 (patch)
tree6a5c1532304782c36ffe4200b38f3afb76789a43 /src/burn/engine/EngineForExtension.h
parent9c2aed97299fb96aeee3f1471ce40225437aaecf (diff)
downloadwix-af10c45d7b3a44af0b461a557847fe03263dcc10.tar.gz
wix-af10c45d7b3a44af0b461a557847fe03263dcc10.tar.bz2
wix-af10c45d7b3a44af0b461a557847fe03263dcc10.zip
Move burn into burn
Diffstat (limited to 'src/burn/engine/EngineForExtension.h')
-rw-r--r--src/burn/engine/EngineForExtension.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/burn/engine/EngineForExtension.h b/src/burn/engine/EngineForExtension.h
new file mode 100644
index 00000000..bad5f08a
--- /dev/null
+++ b/src/burn/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