Group: Pipe - Library: kernel32
Using named pipes for interprocess communication
BOOL DisconnectNamedPipe(
HANDLE hNamedPipe
); DECLARE INTEGER DisconnectNamedPipe IN kernel32;
INTEGER hNamedPipe hNamedPipe [in] A handle to an instance of a named pipe. This handle must be created by the CreateNamedPipe function.
If the function succeeds, the return value is nonzero.
See also: ConnectNamedPipe, FlushFileBuffers, CloseHandle.
Home