Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[s]
function GetRAM: String;
var
memory: TMemoryStatus;
memoryAmount: Double;
begin
memory.dwLength := SizeOf(memory);
GlobalMemoryStatus(memory);
{ calculate RAM to the nearest MB }
memoryAmount := RoundTo(memory.dwTotalPhys / 1048576, -2);
Result := FloatToStr(memoryAmount) + 'MB';
end;
[/s]