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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
#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 struct _BURN_PIPE_CONNECTION
{
LPWSTR sczName;
LPWSTR sczSecret;
DWORD dwProcessId;
HANDLE hProcess;
HANDLE hPipe;
HANDLE hCachePipe;
HANDLE hLoggingPipe;
} BURN_PIPE_CONNECTION;
typedef enum _BURN_PIPE_MESSAGE_TYPE : DWORD
{
BURN_PIPE_MESSAGE_TYPE_LOG = 0xF0000001,
BURN_PIPE_MESSAGE_TYPE_COMPLETE = 0xF0000002,
BURN_PIPE_MESSAGE_TYPE_TERMINATE = 0xF0000003,
} BURN_PIPE_MESSAGE_TYPE;
typedef struct _BURN_PIPE_MESSAGE
{
DWORD dwMessage;
DWORD cbData;
BOOL fAllocatedData;
LPVOID pvData;
} BURN_PIPE_MESSAGE;
typedef struct _BURN_PIPE_RESULT
{
DWORD dwResult;
BOOL fRestart;
} BURN_PIPE_RESULT;
typedef HRESULT (*PFN_PIPE_MESSAGE_CALLBACK)(
__in BURN_PIPE_MESSAGE* pMsg,
__in_opt LPVOID pvContext,
__out DWORD* pdwResult
);
// Common functions.
void PipeConnectionInitialize(
__in BURN_PIPE_CONNECTION* pConnection
);
void PipeConnectionUninitialize(
__in BURN_PIPE_CONNECTION* pConnection
);
HRESULT PipeSendMessage(
__in HANDLE hPipe,
__in DWORD dwMessage,
__in_bcount_opt(cbData) LPVOID pvData,
__in SIZE_T cbData,
__in_opt PFN_PIPE_MESSAGE_CALLBACK pfnCallback,
__in_opt LPVOID pvContext,
__out DWORD* pdwResult
);
HRESULT PipePumpMessages(
__in HANDLE hPipe,
__in_opt PFN_PIPE_MESSAGE_CALLBACK pfnCallback,
__in_opt LPVOID pvContext,
__in BURN_PIPE_RESULT* pResult
);
// Parent functions.
HRESULT PipeCreateNameAndSecret(
__out_z LPWSTR *psczConnectionName,
__out_z LPWSTR *psczSecret
);
HRESULT PipeCreatePipes(
__in BURN_PIPE_CONNECTION* pConnection,
__in BOOL fCompanion
);
HRESULT PipeWaitForChildConnect(
__in BURN_PIPE_CONNECTION* pConnection
);
HRESULT PipeTerminateLoggingPipe(
__in HANDLE hLoggingPipe,
__in DWORD dwParentExitCode
);
HRESULT PipeTerminateChildProcess(
__in BURN_PIPE_CONNECTION* pConnection,
__in DWORD dwParentExitCode,
__in BOOL fRestart
);
// Child functions.
HRESULT PipeChildConnect(
__in BURN_PIPE_CONNECTION* pConnection,
__in BOOL fCompanion
);
#ifdef __cplusplus
}
#endif
|