4 * Copyright 1998 Alexandre Julliard
13 /***********************************************************************
14 * CreatePipe (KERNEL32.170)
16 BOOL WINAPI
CreatePipe( PHANDLE hReadPipe
, PHANDLE hWritePipe
,
17 LPSECURITY_ATTRIBUTES sa
, DWORD size
)
22 struct create_pipe_request
*req
= server_alloc_req( sizeof(*req
), 0 );
24 req
->inherit
= (sa
&& (sa
->nLength
>=sizeof(*sa
)) && sa
->bInheritHandle
);
25 if ((ret
= !server_call( REQ_CREATE_PIPE
)))
27 *hReadPipe
= req
->handle_read
;
28 *hWritePipe
= req
->handle_write
;