4 * Copyright 1998 Alexandre Julliard
13 /***********************************************************************
14 * CreatePipe (KERNEL32.170)
16 BOOL WINAPI
CreatePipe( PHANDLE hReadPipe
, PHANDLE hWritePipe
,
17 LPSECURITY_ATTRIBUTES sa
, DWORD size
)
19 struct create_pipe_request
*req
= get_req_buffer();
21 req
->inherit
= (sa
&& (sa
->nLength
>=sizeof(*sa
)) && sa
->bInheritHandle
);
22 if (server_call( REQ_CREATE_PIPE
)) return FALSE
;
23 *hReadPipe
= req
->handle_read
;
24 *hWritePipe
= req
->handle_write
;