How to collect Memory Usage Information For a Process?
I want to write code like this: (but i can't)
Is any idea how to view mem usage for each process, named before (for example explorer.exe) (not by PID as in example)
http://msdn2.microsoft.com/en-us/library/ms682050.aspx
I think it...
Here is an example , I used an Api like you
here code on C#
BOOL GlobalMemoryStatusEx(
LPMEMORYSTATUSEX lpBuffer
);
typedef struct _MEMORYSTATUSEX {
DWORD dwLength;
DWORD dwMemoryLoad;
DWORDLONG ullTotalPhys;
DWORDLONG ullAvailPhys;
DWORDLONG ullTotalPageFile...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.