GetPhysicallyInstalledSystemMemory method

int GetPhysicallyInstalledSystemMemory(
  1. Pointer<Uint64> TotalMemoryInKilobytes
)

Implementation

int GetPhysicallyInstalledSystemMemory(
  ffi.Pointer<ffi.Uint64> TotalMemoryInKilobytes,
) {
  return (_GetPhysicallyInstalledSystemMemory ??= _dylib.lookupFunction<
          _c_GetPhysicallyInstalledSystemMemory,
          _dart_GetPhysicallyInstalledSystemMemory>(
      'GetPhysicallyInstalledSystemMemory'))(
    TotalMemoryInKilobytes,
  );
}