CVS: winex/include ntddk.h,1.6,1.7

[email protected] 12 Sep 2007 12:38:34 -0000
Newsgroups gmane.comp.emulators.winex.cvs
Message-ID <[email protected]>
Subject: winex/include ntddk.h,1.6,1.7Update of /var/lib/cvsd/cvsroot/winex/include
In directory agravaine:/tmp/cvs-serv12710/include

Modified Files:
	ntddk.h 
Log Message:

- fixed a build break in the ntddk.h header because the VM_COUNTERS struct wasn't defined.


Index: ntddk.h
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/include/ntddk.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- ntddk.h	12 Sep 2007 12:38:02 -0000	1.6
+++ ntddk.h	12 Sep 2007 12:38:32 -0000	1.7
@@ -668,7 +668,19 @@
     DWORD dwHandleCount;
     DWORD dwUnknown3;
     DWORD dwUnknown4;
-    VM_COUNTERS vmCounters;
+    struct __VM_COUNTERS__ {
+        ULONG PeakVirtualSize;
+        ULONG VirtualSize;
+        ULONG PageFaultCount;
+        ULONG PeakWorkingSetSize;
+        ULONG WorkingSetSize;
+        ULONG QuotaPeakPagedPoolUsage;
+        ULONG QuotaPagedPoolUsage;
+        ULONG QuotaPeakNonPagedPoolUsage;
+        ULONG QuotaNonPagedPoolUsage;
+        ULONG PagefileUsage;
+        ULONG PeakPagefileUsage;
+    } vmCounters;
     IO_COUNTERS ioCounters;
     SYSTEM_THREAD_INFORMATION ti[1];
 } SYSTEM_PROCESS_INFORMATION;