The GetNamedPipeHandleState function retrieves information about a specified named pipe. The information returned can vary during the lifetime of an instance of the named pipe.
BOOL GetNamedPipeHandleState(
HANDLE hNamedPipe, |
// handle of named pipe |
LPDWORD lpState, |
// address of flags indicating pipe state |
LPDWORD lpCurInstances, |
// address of number of current pipe instances |
LPDWORD lpMaxCollectionCount, |
// address of max. bytes before remote transmission |
LPDWORD lpCollectDataTimeout, |
// address of max. time before remote transmission |
LPTSTR lpUserName, |
// address of user name of client process |
DWORD nMaxUserNameSize |
// size, in characters, of user name buffer |
); |
Value |
Meaning |
PIPE_NOWAIT |
The pipe handle is in nonblocking mode. If this flag is not specified, the pipe handle is in blocking mode. |
PIPE_READMODE_MESSAGE |
The pipe handle is in message-read mode. If this flag is not specified, the pipe handle is in byte-read mode. |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
The GetNamedPipeHandleState function returns successfully even if all of the pointers passed to it are NULL.
To set the pipe handle state, use the SetNamedPipeHandleState function.
file: /Techref/os/win/api/win32/func/src/f35_7.htm, 5KB, , updated: 2000/4/7 11:19, local time: 2024/11/5 20:44,
18.191.233.34:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/Techref/os/win/api/win32/func/src/f35_7.htm"> GetNamedPipeHandleState</A> |
Did you find what you needed? |