free place in RAM

  • Thread starter Thread starter Yossef
  • Start date Start date
Y

Yossef

I'm looking for a way to get information about a size of a
free RAM (how much free place i have in RAM) by using
visual c function
 
The Windows API:
GlobalMemoryStatus() and GlobalMemoryStatusEx()

will tell you the available Physical memory, Pagefile as well as the
available Virtual Memory of the calling process.
 
Back
Top