- Update KTHREAD and KUSER_SHARED_DATA to latest versions. This should make 2K3 drive...
[reactos.git] / reactos / include / ndk / arch / ketypes.h
index 29ebd99..c47934e 100644 (file)
@@ -9,15 +9,21 @@
 #ifndef _ARCH_KETYPES_H
 #define _ARCH_KETYPES_H
 
-/* Shared structure needed by Arch-specific headers */
+/* Shared structures needed by Arch-specific headers */
 typedef struct _KDPC_DATA
 {
-    LIST_ENTRY  DpcListHead;
-    ULONG  DpcLock;
-    ULONG  DpcQueueDepth;
-    ULONG  DpcCount;
+    LIST_ENTRY DpcListHead;
+    ULONG DpcLock;
+    ULONG DpcQueueDepth;
+    ULONG DpcCount;
 } KDPC_DATA, *PKDPC_DATA;
 
+typedef struct _PP_LOOKASIDE_LIST
+{
+    struct _GENERAL_LOOKASIDE *P;
+    struct _GENERAL_LOOKASIDE *L;
+} PP_LOOKASIDE_LIST, *PPP_LOOKASIDE_LIST;
+
 #ifdef _M_IX86
 #include <ndk/i386/ketypes.h>
 #else