SetComputerNameA method

int SetComputerNameA(
  1. Pointer<Int8> lpComputerName
)

Implementation

int SetComputerNameA(
  ffi.Pointer<ffi.Int8> lpComputerName,
) {
  return (_SetComputerNameA ??=
      _dylib.lookupFunction<_c_SetComputerNameA, _dart_SetComputerNameA>(
          'SetComputerNameA'))(
    lpComputerName,
  );
}