CREATE_PIPE v16
The CREATE_PIPE
function creates an explicit public pipe or an explicit private pipe with a specified name.
Parameters
pipename
Name of the pipe.
maxpipesize
Maximum capacity of the pipe in bytes. Default is 8192 bytes.
private
Create a public pipe if set to FALSE
. Create a private pipe if set to TRUE.
This is the default.
status
Status code returned by the operation. 0
indicates successful creation.
Examples
This example creates a private pipe named messages
:
This example creates a public pipe named mailbox
:
- On this page
- Parameters
- Examples