From 1f2fce4fea01c3f367d4534f9397dfee74e6fc39 Mon Sep 17 00:00:00 2001 From: Mike Nordell Date: Mon, 22 Oct 2007 10:04:52 +0000 Subject: [PATCH] [COMMENT] Document array indices for EPROCESS.Quota* members. svn path=/trunk/; revision=29771 --- reactos/include/ndk/pstypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/include/ndk/pstypes.h b/reactos/include/ndk/pstypes.h index 964b658ec99..b4b1e717963 100644 --- a/reactos/include/ndk/pstypes.h +++ b/reactos/include/ndk/pstypes.h @@ -1160,8 +1160,8 @@ typedef struct _EPROCESS EX_RUNDOWN_REF RundownProtect; HANDLE UniqueProcessId; LIST_ENTRY ActiveProcessLinks; - ULONG QuotaUsage[3]; - ULONG QuotaPeak[3]; + ULONG QuotaUsage[3]; /* 0=PagedPool, 1=NonPagedPool, 2=Pagefile */ + ULONG QuotaPeak[3]; /* ditto */ ULONG CommitCharge; ULONG PeakVirtualSize; ULONG VirtualSize;