blob: 0a0a8fc2172d36e9fcda6e50ceebed4aab747bf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#pragma once
// 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.
#ifdef __cplusplus
extern "C" {
#endif
typedef enum _BURN_EMBEDDED_MESSAGE_TYPE
{
BURN_EMBEDDED_MESSAGE_TYPE_UNKNOWN,
BURN_EMBEDDED_MESSAGE_TYPE_ERROR,
BURN_EMBEDDED_MESSAGE_TYPE_PROGRESS,
} BURN_EMBEDDED_MESSAGE_TYPE;
HRESULT EmbeddedRunBundle(
__in BURN_PIPE_CONNECTION* pConnection,
__in_z LPCWSTR wzExecutablePath,
__in_z LPWSTR sczBaseCommand,
__in_z_opt LPCWSTR wzUserArgs,
__in PFN_GENERICMESSAGEHANDLER pfnGenericMessageHandler,
__in LPVOID pvContext,
__out DWORD* pdwExitCode
);
#ifdef __cplusplus
}
#endif
|