summaryrefslogtreecommitdiff
path: root/src/burn/engine/manifest.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/manifest.h
parent9c2aed97299fb96aeee3f1471ce40225437aaecf (diff)
downloadwix-af10c45d7b3a44af0b461a557847fe03263dcc10.tar.gz
wix-af10c45d7b3a44af0b461a557847fe03263dcc10.tar.bz2
wix-af10c45d7b3a44af0b461a557847fe03263dcc10.zip
Move burn into burn
Diffstat (limited to 'src/burn/engine/manifest.h')
-rw-r--r--src/burn/engine/manifest.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/burn/engine/manifest.h b/src/burn/engine/manifest.h
new file mode 100644
index 00000000..8c527279
--- /dev/null
+++ b/src/burn/engine/manifest.h
@@ -0,0 +1,28 @@
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
5interface IBurnPayload; // forward declare.
6
7#if defined(__cplusplus)
8extern "C" {
9#endif
10
11
12// function declarations
13
14HRESULT ManifestLoadXmlFromFile(
15 __in LPCWSTR wzPath,
16 __in BURN_ENGINE_STATE* pEngineState
17 );
18
19HRESULT ManifestLoadXmlFromBuffer(
20 __in_bcount(cbBuffer) BYTE* pbBuffer,
21 __in SIZE_T cbBuffer,
22 __in BURN_ENGINE_STATE* pEngineState
23 );
24
25
26#if defined(__cplusplus)
27}
28#endif