GetSystemInfo method

void GetSystemInfo(
  1. Pointer<LPSYSTEM_INFO> lpSystemInfo
)

Implementation

void GetSystemInfo(
  ffi.Pointer<LPSYSTEM_INFO> lpSystemInfo,
) {
  return (_GetSystemInfo ??=
      _dylib.lookupFunction<_c_GetSystemInfo, _dart_GetSystemInfo>(
          'GetSystemInfo'))(
    lpSystemInfo,
  );
}