GetNamedPipeClientComputerNameW method

int GetNamedPipeClientComputerNameW(
  1. Pointer<Void> Pipe,
  2. Pointer<Uint16> ClientComputerName,
  3. int ClientComputerNameLength
)

Implementation

int GetNamedPipeClientComputerNameW(
  ffi.Pointer<ffi.Void> Pipe,
  ffi.Pointer<ffi.Uint16> ClientComputerName,
  int ClientComputerNameLength,
) {
  return (_GetNamedPipeClientComputerNameW ??= _dylib.lookupFunction<
          _c_GetNamedPipeClientComputerNameW,
          _dart_GetNamedPipeClientComputerNameW>(
      'GetNamedPipeClientComputerNameW'))(
    Pipe,
    ClientComputerName,
    ClientComputerNameLength,
  );
}