GetComputerNameExA method
Implementation
int GetComputerNameExA(
int NameType,
ffi.Pointer<ffi.Int8> lpBuffer,
ffi.Pointer<ffi.Uint64> nSize,
) {
return (_GetComputerNameExA ??=
_dylib.lookupFunction<_c_GetComputerNameExA, _dart_GetComputerNameExA>(
'GetComputerNameExA'))(
NameType,
lpBuffer,
nSize,
);
}