From 5f701004c02f8820893d997a6090248c42aa2293 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Tue, 21 Sep 2004 22:07:38 +0000 Subject: [PATCH] fixed definition of the SYSTEM_REGISTRY_QUOTA_INFORMATION structure svn path=/trunk/; revision=10965 --- reactos/w32api/include/ddk/ntapi.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/w32api/include/ddk/ntapi.h b/reactos/w32api/include/ddk/ntapi.h index 5ef36597f6a..5de0d199e88 100644 --- a/reactos/w32api/include/ddk/ntapi.h +++ b/reactos/w32api/include/ddk/ntapi.h @@ -566,9 +566,9 @@ typedef struct _SYSTEM_CONTEXT_SWITCH_INFORMATION { } SYSTEM_CONTEXT_SWITCH_INFORMATION, *PSYSTEM_CONTEXT_SWITCH_INFORMATION; typedef struct _SYSTEM_REGISTRY_QUOTA_INFORMATION { - ULONG RegistryQuota; - ULONG RegistryQuotaInUse; - ULONG PagedPoolSize; + ULONG RegistryQuotaAllowed; + ULONG RegistryQuotaUsed; + PVOID Reserved1; } SYSTEM_REGISTRY_QUOTA_INFORMATION, *PSYSTEM_REGISTRY_QUOTA_INFORMATION; typedef struct _SYSTEM_LOAD_AND_CALL_IMAGE {