From 1f8876b1decd892f7456828b8325ceb307326350 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 24 Apr 2009 12:31:03 +0200 Subject: [PATCH] include: Fix the SYSTEM_CACHE_INFORMATION structure for Win64. --- include/winternl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/winternl.h b/include/winternl.h index 48fa8d01d32..5ebbca58a89 100644 --- a/include/winternl.h +++ b/include/winternl.h @@ -1302,9 +1302,11 @@ typedef struct _SYSTEM_CACHE_INFORMATION { ULONG CurrentSize; ULONG PeakSize; ULONG PageFaultCount; +#ifndef _WIN64 ULONG MinimumWorkingSet; ULONG MaximumWorkingSet; ULONG unused[4]; +#endif } SYSTEM_CACHE_INFORMATION, *PSYSTEM_CACHE_INFORMATION; /* System Information Class 0x17 */ -- 2.11.4.GIT