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