GetNamedPipeClientComputerName function kernel32

int GetNamedPipeClientComputerName(
  1. int Pipe,
  2. Pointer<Utf16> ClientComputerName,
  3. int ClientComputerNameLength
)

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,
);