GetComputerNameA method

int GetComputerNameA(
  1. Pointer<Int8> lpBuffer,
  2. Pointer<Uint64> nSize
)

Implementation

int GetComputerNameA(
  ffi.Pointer<ffi.Int8> lpBuffer,
  ffi.Pointer<ffi.Uint64> nSize,
) {
  return (_GetComputerNameA ??=
      _dylib.lookupFunction<_c_GetComputerNameA, _dart_GetComputerNameA>(
          'GetComputerNameA'))(
    lpBuffer,
    nSize,
  );
}