Commit b11507eb authored by Alexandre Julliard's avatar Alexandre Julliard

include: Fix the PROCESS_MEMORY_COUNTERS structure definition for Win64.

parent 7181c38d
...@@ -28,16 +28,16 @@ typedef struct _MODULEINFO { ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment