Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

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.

 

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!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions