Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Constants, prefix the name with the module name and a period.
PIPE_ (Constants)
.
Summary
TODO - a short description of this collection of constants
C# Constants:
//
// Define the dwOpenMode values for CreateNamedPipe
//
const int PIPE_ACCESS_INBOUND = 0x00000001
const int PIPE_ACCESS_OUTBOUND = 0x00000002
const int PIPE_ACCESS_DUPLEX = 0x00000003
//
// Define the Named Pipe End flags for GetNamedPipeInfo
//
const int PIPE_CLIENT_END = 0x00000000
const int PIPE_SERVER_END = 0x00000001
//
// Define the dwPipeMode values for CreateNamedPipe
//
const int PIPE_WAIT = 0x00000000
const int PIPE_NOWAIT = 0x00000001
const int PIPE_READMODE_BYTE = 0x00000000
const int PIPE_READMODE_MESSAGE= 0x00000002
const int PIPE_TYPE_BYTE = 0x00000000
const int PIPE_TYPE_MESSAGE = 0x00000004
//
// Define the well known values for CreateNamedPipe nMaxInstances
//
const int PIPE_UNLIMITED_INSTANCES = 255
VB Constants:
TODO
Notes:
None.
The CreateNamedPipe API
11/16/2009 4:32:03 PM - -128.226.120.121
The CreateNamedPipe API
11/16/2009 4:32:03 PM - -128.226.120.121
The CreateNamedPipe API
11/16/2009 4:32:03 PM - -128.226.120.121
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!