diff options
Diffstat (limited to 'src/burn/engine/burnpipe.h')
-rw-r--r-- | src/burn/engine/burnpipe.h | 20 |
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. |
43 | void PipeConnectionInitialize( | 43 | void BurnPipeConnectionInitialize( |
44 | __in BURN_PIPE_CONNECTION* pConnection | 44 | __in BURN_PIPE_CONNECTION* pConnection |
45 | ); | 45 | ); |
46 | void PipeConnectionUninitialize( | 46 | void BurnPipeConnectionUninitialize( |
47 | __in BURN_PIPE_CONNECTION* pConnection | 47 | __in BURN_PIPE_CONNECTION* pConnection |
48 | ); | 48 | ); |
49 | HRESULT PipeSendMessage( | 49 | HRESULT 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 | ); |
58 | HRESULT PipePumpMessages( | 58 | HRESULT 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. |
66 | HRESULT PipeCreateNameAndSecret( | 66 | HRESULT BurnPipeCreateNameAndSecret( |
67 | __out_z LPWSTR *psczConnectionName, | 67 | __out_z LPWSTR *psczConnectionName, |
68 | __out_z LPWSTR *psczSecret | 68 | __out_z LPWSTR *psczSecret |
69 | ); | 69 | ); |
70 | HRESULT PipeCreatePipes( | 70 | HRESULT BurnPipeCreatePipes( |
71 | __in BURN_PIPE_CONNECTION* pConnection, | 71 | __in BURN_PIPE_CONNECTION* pConnection, |
72 | __in BOOL fCompanion | 72 | __in BOOL fCompanion |
73 | ); | 73 | ); |
74 | HRESULT PipeWaitForChildConnect( | 74 | HRESULT BurnPipeWaitForChildConnect( |
75 | __in BURN_PIPE_CONNECTION* pConnection | 75 | __in BURN_PIPE_CONNECTION* pConnection |
76 | ); | 76 | ); |
77 | HRESULT PipeTerminateLoggingPipe( | 77 | HRESULT BurnPipeTerminateLoggingPipe( |
78 | __in HANDLE hLoggingPipe, | 78 | __in HANDLE hLoggingPipe, |
79 | __in DWORD dwParentExitCode | 79 | __in DWORD dwParentExitCode |
80 | ); | 80 | ); |
81 | HRESULT PipeTerminateChildProcess( | 81 | HRESULT 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. |
88 | HRESULT PipeChildConnect( | 88 | HRESULT BurnPipeChildConnect( |
89 | __in BURN_PIPE_CONNECTION* pConnection, | 89 | __in BURN_PIPE_CONNECTION* pConnection, |
90 | __in BOOL fCompanion | 90 | __in BOOL fCompanion |
91 | ); | 91 | ); |