GetNativeSystemInfo method

void GetNativeSystemInfo(
  1. Pointer<LPSYSTEM_INFO> lpSystemInfo
)

Implementation

void GetNativeSystemInfo(
  ffi.Pointer<LPSYSTEM_INFO> lpSystemInfo,
) {
  return (_GetNativeSystemInfo ??= _dylib.lookupFunction<
      _c_GetNativeSystemInfo,
      _dart_GetNativeSystemInfo>('GetNativeSystemInfo'))(
    lpSystemInfo,
  );
}