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.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/burn/engine/burnpipe.h b/src/burn/engine/burnpipe.h
index 6571c0e2..c878ad94 100644
--- a/src/burn/engine/burnpipe.h
+++ b/src/burn/engine/burnpipe.h
@@ -25,15 +25,6 @@ typedef enum _BURN_PIPE_MESSAGE_TYPE : DWORD
25 BURN_PIPE_MESSAGE_TYPE_TERMINATE = 0xF0000003, 25 BURN_PIPE_MESSAGE_TYPE_TERMINATE = 0xF0000003,
26} BURN_PIPE_MESSAGE_TYPE; 26} BURN_PIPE_MESSAGE_TYPE;
27 27
28typedef struct _BURN_PIPE_MESSAGE
29{
30 DWORD dwMessage;
31 DWORD cbData;
32
33 BOOL fAllocatedData;
34 LPVOID pvData;
35} BURN_PIPE_MESSAGE;
36
37typedef struct _BURN_PIPE_RESULT 28typedef struct _BURN_PIPE_RESULT
38{ 29{
39 DWORD dwResult; 30 DWORD dwResult;
@@ -42,7 +33,7 @@ typedef struct _BURN_PIPE_RESULT
42 33
43 34
44typedef HRESULT (*PFN_PIPE_MESSAGE_CALLBACK)( 35typedef HRESULT (*PFN_PIPE_MESSAGE_CALLBACK)(
45 __in BURN_PIPE_MESSAGE* pMsg, 36 __in PIPE_MESSAGE* pMsg,
46 __in_opt LPVOID pvContext, 37 __in_opt LPVOID pvContext,
47 __out DWORD* pdwResult 38 __out DWORD* pdwResult
48 ); 39 );