GetNamedPipeClientSessionId function kernel32

int GetNamedPipeClientSessionId(
  1. int Pipe,
  2. Pointer<Uint32> ClientSessionId
)

Retrieves the client process identifier for the specified named pipe.

BOOL GetNamedPipeClientSessionId(
  HANDLE Pipe,
  PULONG ClientSessionId
);

Implementation

int GetNamedPipeClientSessionId(int Pipe, Pointer<Uint32> ClientSessionId) =>
    _GetNamedPipeClientSessionId(Pipe, ClientSessionId);