Checking available free memory using Symbian C++
Article Metadata
Compatibility
Platform(s): S60 1st Edition
S60 2nd Edition
S60 2nd Edition
Article
Created: User:Technical writer 2
(10 Mar 2003)
Last edited: ashraf fawzy
(19 Aug 2012)
Overview
How can I check how much free memory is available?
Description
Use the following code to get the amount of total free memory in bytes:
TMemoryInfoV1Buf info;
UserHal::MemoryInfo(info);
TInt freeMemory = info().iFreeRamInBytes;
<code>

