INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- BOOL
-- The CreatePipe function creates an anonymous pipe, and returns
-- handles to the read and write ends of the pipe.
-- Parameters
-- hReadPipe Points to the variable that receives the read
-- handle for the pipe.
-- hWritePipe Points to the variable that receives the write
-- handle for the pipe.
-- lpPipeAttributes Points to a SECURITY_ATTRIBUTES structure that
-- specifies the security attributes for the pipe.
-- The file system must support this parameter for
-- it to have an effect.
-- If lpPipeAttributes is NULL, the pipe is created
-- with a default security descriptor, and
-- the resulting handle is not inherited.
-- nSize Specifies the buffer size for the pipe.
-- The size is only a suggestion; the system uses
-- the value to calculate an appropriate buffering
-- mechanism. If this parameter is zero, the system
-- uses the default buffer size.
-- Return Value
-- If the function succeeds, the return value is TRUE.
-- If the function fails, the return value is FALSE.
-- To get extended error information, call GetLastError.
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |