GetProcessMemoryInfo function
Retrieves information about the memory usage of the specified process.
Syntax
BOOL WINAPI GetProcessMemoryInfo( _In_ HANDLE Process, _Out_ PPROCESS_MEMORY_COUNTERS ppsmemCounters, _In_ DWORD cb );
Parameters
- Process [in]
A handle to the process. The handle must have the PROCESS_QUERY_INFORMATION orPROCESS_QUERY_LIMITED_INFORMATION access right and the PROCESS_VM_READ access right. For more information, see Process Security and Access Rights.
Windows Server 2003 and Windows XP: The handle must have thePROCESS_QUERY_INFORMATION and PROCESS_VM_READ access rights.
- ppsmemCounters [out]
A pointer to the PROCESS_MEMORY_COUNTERS or PROCESS_MEMORY_COUNTERS_EX structure that receives information about the memory usage of the process.
- cb [in]
The size of the ppsmemCounters structure, in bytes.
Return value
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
Starting with Windows 7 and Windows Server 2008 R2, Psapi.h establishes version numbers for the PSAPI functions. The PSAPI version number affects the name used to call the function and the library that a program must load.
If PSAPI_VERSION is 2 or greater, this function is defined as K32GetProcessMemoryInfo in Psapi.h and exported in Kernel32.lib and Kernel32.dll. If PSAPI_VERSION is 1, this function is defined asGetProcessMemoryInfo in Psapi.h and exported in Psapi.lib and Psapi.dll as a wrapper that callsK32GetProcessMemoryInfo.
Programs that must run on earlier versions of Windows as well as Windows 7 and later versions should always call this function as GetProcessMemoryInfo. To ensure correct resolution of symbols, add Psapi.lib to theTARGETLIBS macro and compile the program with -DPSAPI_VERSION=1. To use run-time dynamic linking, load Psapi.dll.
Examples
For an example, see Collecting Memory Usage Information for a Process.
Requirements
Minimum supported client | Windows XP [desktop apps only] |
---|---|
Minimum supported server | Windows Server 2003 [desktop apps only] |
Header |
|
Library |
|
DLL |
|
See also
'C++' 카테고리의 다른 글
GetCurrentProcess function (0) | 2014.03.04 |
---|---|
프로세스 메모리 사용량 확인 sample 프로그램 by MSDN (0) | 2014.03.04 |
VirtualQuery function (0) | 2014.03.04 |
MFC 표준 컨트롤에서 컨트롤 파생 (0) | 2014.02.14 |
MFC Custom Controls (0) | 2014.01.20 |