Virtual Memory Check
C / C++ / MFC
4
Posts
2
Posters
0
Views
1
Watching
-
Hi, I need a help once again. What are the proper Window API to check how much of memory space you have allocated and how much virtual memory space you have left:confused::confused:?
Try
VOID GlobalMemoryStatus(
LPMEMORYSTATUS lpBuffer // pointer to the memory status structure
);hth -ar
-
Try
VOID GlobalMemoryStatus(
LPMEMORYSTATUS lpBuffer // pointer to the memory status structure
);hth -ar
-
Take a look at GetProcessWorkingSetSize () and see if that's what you need. There's a whole slough of memory management functions in the API, just check out the documentation in MSDN! :) -ar