20 #include <winpr/config.h>
22 #include <winpr/crt.h>
23 #include <winpr/sysinfo.h>
25 #include <winpr/collections.h>
35 void MessagePipe_PostQuit(
wMessagePipe* pipe,
int nExitCode)
37 MessageQueue_PostQuit(pipe->In, nExitCode);
38 MessageQueue_PostQuit(pipe->Out, nExitCode);
54 pipe->In = MessageQueue_New(NULL);
58 pipe->Out = MessageQueue_New(NULL);
65 MessageQueue_Free(pipe->In);
75 MessageQueue_Free(pipe->In);
76 MessageQueue_Free(pipe->Out);