diff options
Diffstat (limited to 'src/burn/engine/embedded.h')
-rw-r--r-- | src/burn/engine/embedded.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/burn/engine/embedded.h b/src/burn/engine/embedded.h new file mode 100644 index 00000000..08adeae0 --- /dev/null +++ b/src/burn/engine/embedded.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 | #ifdef __cplusplus | ||
6 | extern "C" { | ||
7 | #endif | ||
8 | |||
9 | typedef enum _BURN_EMBEDDED_MESSAGE_TYPE | ||
10 | { | ||
11 | BURN_EMBEDDED_MESSAGE_TYPE_UNKNOWN, | ||
12 | BURN_EMBEDDED_MESSAGE_TYPE_ERROR, | ||
13 | BURN_EMBEDDED_MESSAGE_TYPE_PROGRESS, | ||
14 | } BURN_EMBEDDED_MESSAGE_TYPE; | ||
15 | |||
16 | |||
17 | HRESULT EmbeddedRunBundle( | ||
18 | __in LPCWSTR wzExecutablePath, | ||
19 | __in LPCWSTR wzArguments, | ||
20 | __in PFN_GENERICMESSAGEHANDLER pfnGenericMessageHandler, | ||
21 | __in LPVOID pvContext, | ||
22 | __out DWORD* pdwExitCode | ||
23 | ); | ||
24 | |||
25 | #ifdef __cplusplus | ||
26 | } | ||
27 | #endif | ||