include: Fix the PROCESS_MEMORY_COUNTERS structure definition for Win64.

This commit is contained in:
Alexandre Julliard 2009-01-05 15:44:53 +01:00
parent 7181c38dcc
commit b11507ebca
1 changed files with 10 additions and 10 deletions

View File

@ -28,16 +28,16 @@ typedef struct _MODULEINFO {
} MODULEINFO, *LPMODULEINFO; } MODULEINFO, *LPMODULEINFO;
typedef struct _PROCESS_MEMORY_COUNTERS { typedef struct _PROCESS_MEMORY_COUNTERS {
DWORD cb; DWORD cb;
DWORD PageFaultCount; DWORD PageFaultCount;
DWORD PeakWorkingSetSize; SIZE_T PeakWorkingSetSize;
DWORD WorkingSetSize; SIZE_T WorkingSetSize;
DWORD QuotaPeakPagedPoolUsage; SIZE_T QuotaPeakPagedPoolUsage;
DWORD QuotaPagedPoolUsage; SIZE_T QuotaPagedPoolUsage;
DWORD QuotaPeakNonPagedPoolUsage; SIZE_T QuotaPeakNonPagedPoolUsage;
DWORD QuotaNonPagedPoolUsage; SIZE_T QuotaNonPagedPoolUsage;
DWORD PagefileUsage; SIZE_T PagefileUsage;
DWORD PeakPagefileUsage; SIZE_T PeakPagefileUsage;
} PROCESS_MEMORY_COUNTERS; } PROCESS_MEMORY_COUNTERS;
typedef PROCESS_MEMORY_COUNTERS *PPROCESS_MEMORY_COUNTERS; typedef PROCESS_MEMORY_COUNTERS *PPROCESS_MEMORY_COUNTERS;