GetNamedPipeClientComputerName function kernel32
Retrieves the client computer name for the specified named pipe.
BOOL GetNamedPipeClientComputerNameW(
HANDLE Pipe,
LPWSTR ClientComputerName,
ULONG ClientComputerNameLength
);
Implementation
int GetNamedPipeClientComputerName(
int Pipe,
Pointer<Utf16> ClientComputerName,
int ClientComputerNameLength,
) => _GetNamedPipeClientComputerName(
Pipe,
ClientComputerName,
ClientComputerNameLength,
);