include: Fix the SYSTEM_CACHE_INFORMATION structure for Win64.

This commit is contained in:
Alexandre Julliard 2009-04-24 12:31:03 +02:00
parent 095c38e7c4
commit 1f8876b1de
1 changed files with 2 additions and 0 deletions

View File

@ -1302,9 +1302,11 @@ typedef struct _SYSTEM_CACHE_INFORMATION {
ULONG CurrentSize; ULONG CurrentSize;
ULONG PeakSize; ULONG PeakSize;
ULONG PageFaultCount; ULONG PageFaultCount;
#ifndef _WIN64
ULONG MinimumWorkingSet; ULONG MinimumWorkingSet;
ULONG MaximumWorkingSet; ULONG MaximumWorkingSet;
ULONG unused[4]; ULONG unused[4];
#endif
} SYSTEM_CACHE_INFORMATION, *PSYSTEM_CACHE_INFORMATION; } SYSTEM_CACHE_INFORMATION, *PSYSTEM_CACHE_INFORMATION;
/* System Information Class 0x17 */ /* System Information Class 0x17 */