GetPhysicallyInstalledSystemMemory function kernel32

int GetPhysicallyInstalledSystemMemory(
  1. Pointer<Uint64> TotalMemoryInKilobytes
)

Retrieves the amount of RAM that is physically installed on the computer.

BOOL GetPhysicallyInstalledSystemMemory(
  PULONGLONG TotalMemoryInKilobytes
);

Implementation

int GetPhysicallyInstalledSystemMemory(
        Pointer<Uint64> TotalMemoryInKilobytes) =>
    _GetPhysicallyInstalledSystemMemory(TotalMemoryInKilobytes);