include: Fix the SYSTEM_CACHE_INFORMATION structure for Win64.
This commit is contained in:
parent
095c38e7c4
commit
1f8876b1de
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue