GetPhysicallyInstalledSystemMemory function kernel32
Retrieves the amount of RAM that is physically installed on the computer.
BOOL GetPhysicallyInstalledSystemMemory(
PULONGLONG TotalMemoryInKilobytes
);
Implementation
int GetPhysicallyInstalledSystemMemory(
Pointer<Uint64> TotalMemoryInKilobytes,
) => _GetPhysicallyInstalledSystemMemory(TotalMemoryInKilobytes);