aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/burnpipe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/burn/engine/burnpipe.h')
-rw-r--r--src/burn/engine/burnpipe.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/burn/engine/burnpipe.h b/src/burn/engine/burnpipe.h
index c878ad94..4cf1e23a 100644
--- a/src/burn/engine/burnpipe.h
+++ b/src/burn/engine/burnpipe.h
@@ -40,13 +40,13 @@ typedef HRESULT (*PFN_PIPE_MESSAGE_CALLBACK)(
40 40
41 41
42// Common functions. 42// Common functions.
43void PipeConnectionInitialize( 43void BurnPipeConnectionInitialize(
44 __in BURN_PIPE_CONNECTION* pConnection 44 __in BURN_PIPE_CONNECTION* pConnection
45 ); 45 );
46void PipeConnectionUninitialize( 46void BurnPipeConnectionUninitialize(
47 __in BURN_PIPE_CONNECTION* pConnection 47 __in BURN_PIPE_CONNECTION* pConnection
48 ); 48 );
49HRESULT PipeSendMessage( 49HRESULT BurnPipeSendMessage(
50 __in HANDLE hPipe, 50 __in HANDLE hPipe,
51 __in DWORD dwMessage, 51 __in DWORD dwMessage,
52 __in_bcount_opt(cbData) LPVOID pvData, 52 __in_bcount_opt(cbData) LPVOID pvData,
@@ -55,7 +55,7 @@ HRESULT PipeSendMessage(
55 __in_opt LPVOID pvContext, 55 __in_opt LPVOID pvContext,
56 __out DWORD* pdwResult 56 __out DWORD* pdwResult
57 ); 57 );
58HRESULT PipePumpMessages( 58HRESULT BurnPipePumpMessages(
59 __in HANDLE hPipe, 59 __in HANDLE hPipe,
60 __in_opt PFN_PIPE_MESSAGE_CALLBACK pfnCallback, 60 __in_opt PFN_PIPE_MESSAGE_CALLBACK pfnCallback,
61 __in_opt LPVOID pvContext, 61 __in_opt LPVOID pvContext,
@@ -63,29 +63,29 @@ HRESULT PipePumpMessages(
63 ); 63 );
64 64
65// Parent functions. 65// Parent functions.
66HRESULT PipeCreateNameAndSecret( 66HRESULT BurnPipeCreateNameAndSecret(
67 __out_z LPWSTR *psczConnectionName, 67 __out_z LPWSTR *psczConnectionName,
68 __out_z LPWSTR *psczSecret 68 __out_z LPWSTR *psczSecret
69 ); 69 );
70HRESULT PipeCreatePipes( 70HRESULT BurnPipeCreatePipes(
71 __in BURN_PIPE_CONNECTION* pConnection, 71 __in BURN_PIPE_CONNECTION* pConnection,
72 __in BOOL fCompanion 72 __in BOOL fCompanion
73 ); 73 );
74HRESULT PipeWaitForChildConnect( 74HRESULT BurnPipeWaitForChildConnect(
75 __in BURN_PIPE_CONNECTION* pConnection 75 __in BURN_PIPE_CONNECTION* pConnection
76 ); 76 );
77HRESULT PipeTerminateLoggingPipe( 77HRESULT BurnPipeTerminateLoggingPipe(
78 __in HANDLE hLoggingPipe, 78 __in HANDLE hLoggingPipe,
79 __in DWORD dwParentExitCode 79 __in DWORD dwParentExitCode
80 ); 80 );
81HRESULT PipeTerminateChildProcess( 81HRESULT BurnPipeTerminateChildProcess(
82 __in BURN_PIPE_CONNECTION* pConnection, 82 __in BURN_PIPE_CONNECTION* pConnection,
83 __in DWORD dwParentExitCode, 83 __in DWORD dwParentExitCode,
84 __in BOOL fRestart 84 __in BOOL fRestart
85 ); 85 );
86 86
87// Child functions. 87// Child functions.
88HRESULT PipeChildConnect( 88HRESULT BurnPipeChildConnect(
89 __in BURN_PIPE_CONNECTION* pConnection, 89 __in BURN_PIPE_CONNECTION* pConnection,
90 __in BOOL fCompanion 90 __in BOOL fCompanion
91 ); 91 );