I am trying to find out how much memory my application is consuming from within the program itself. The memory usage I am looking for is the number reported in the "Mem Usage" column on the Processes tab of Windows Task Manager.
|
|
|
|
|
|
|
A good starting point would be GetProcessMemoryInfo, which reports various memory info about the specified process. You can pass GetCurrentProcess() as the process handle in order to get information about the calling process. Probably the |
|||
|
|
|
|
Please look at my post here: Search for ShaChris23 |
||
|
|
|
|
Try having a look at GetProcessMemoryInfo. I haven't used it, but it looks like what you need. |
||
|
|
|
|
GetProcessMemoryInfo is the function you are looking for. The docs on MSDN will point you in the right direction. Get the info you want out of the PROCESS_MEMORY_COUNTERS structure you pass in. You'll need to include psapi.h. |
||
|
|
