INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Visual Eiffel Library.", "Win32 API: Pipe Functions"
project: "Visual Eiffel Win32 Library"
revision: "$Revision: 1.1 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: winlib
expanded class WAPI_PIPE_FUNCTIONS
feature -- Access

CreatePipe (hreadpipe: POINTER; hwritepipe: POINTER; lppipeattributes: POINTER; nsize: INTEGER): INTEGER
-- 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.
end -- class WAPI_PIPE_FUNCTIONS

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES