Author: tkreuzer Date: Fri Sep 30 07:18:20 2011 New Revision: 53900
URL: http://svn.reactos.org/svn/reactos?rev=53900&view=rev Log: [NDK] Fix 64 bit issues of SYSTEM_VERIFIER_INFORMATION and SYSTEM_POOLTAG. Reported by dmex.
Modified: trunk/reactos/include/ndk/extypes.h
Modified: trunk/reactos/include/ndk/extypes.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ndk/extypes.h?rev=5... ============================================================================== --- trunk/reactos/include/ndk/extypes.h [iso-8859-1] (original) +++ trunk/reactos/include/ndk/extypes.h [iso-8859-1] Fri Sep 30 07:18:20 2011 @@ -1092,10 +1092,10 @@ }; ULONG PagedAllocs; ULONG PagedFrees; - ULONG PagedUsed; + SIZE_T PagedUsed; ULONG NonPagedAllocs; ULONG NonPagedFrees; - ULONG NonPagedUsed; + SIZE_T NonPagedUsed; } SYSTEM_POOLTAG, *PSYSTEM_POOLTAG; typedef struct _SYSTEM_POOLTAG_INFORMATION { @@ -1331,10 +1331,10 @@ ULONG CurrentNonPagedPoolAllocations; ULONG PeakPagedPoolAllocations; ULONG PeakNonPagedPoolAllocations; - ULONG PagedPoolUsageInBytes; - ULONG NonPagedPoolUsageInBytes; - ULONG PeakPagedPoolUsageInBytes; - ULONG PeakNonPagedPoolUsageInBytes; + SIZE_T PagedPoolUsageInBytes; + SIZE_T NonPagedPoolUsageInBytes; + SIZE_T PeakPagedPoolUsageInBytes; + SIZE_T PeakNonPagedPoolUsageInBytes; } SYSTEM_VERIFIER_INFORMATION, *PSYSTEM_VERIFIER_INFORMATION;
// FIXME: Class 52