Revert r42518: no user mode types in DDK
authorGregor Schneider <grschneider@gmail.com>
Sat, 8 Aug 2009 15:10:01 +0000 (15:10 +0000)
committerGregor Schneider <grschneider@gmail.com>
Sat, 8 Aug 2009 15:10:01 +0000 (15:10 +0000)
svn path=/trunk/; revision=42519

reactos/include/ddk/ntdef.h

index cf32ad2..10b3156 100644 (file)
@@ -441,12 +441,12 @@ typedef struct _LARGE_INTEGER {
 typedef union _LARGE_INTEGER {
     _ANONYMOUS_STRUCT struct
     {
 typedef union _LARGE_INTEGER {
     _ANONYMOUS_STRUCT struct
     {
-        DWORD LowPart;
+        ULONG LowPart;
         LONG HighPart;
     } DUMMYSTRUCTNAME;
     struct
     {
         LONG HighPart;
     } DUMMYSTRUCTNAME;
     struct
     {
-        DWORD LowPart;
+        ULONG LowPart;
         LONG HighPart;
     } u;
 #endif //MIDL_PASS
         LONG HighPart;
     } u;
 #endif //MIDL_PASS
@@ -459,13 +459,13 @@ typedef struct _ULARGE_INTEGER {
 typedef union _ULARGE_INTEGER {
     _ANONYMOUS_STRUCT struct
     {
 typedef union _ULARGE_INTEGER {
     _ANONYMOUS_STRUCT struct
     {
-        DWORD LowPart;
-        DWORD HighPart;
+        ULONG LowPart;
+        ULONG HighPart;
     } DUMMYSTRUCTNAME;
     struct
     {
     } DUMMYSTRUCTNAME;
     struct
     {
-        DWORD LowPart;
-        DWORD HighPart;
+        ULONG LowPart;
+        ULONG HighPart;
     } u;
 #endif //MIDL_PASS
     ULONGLONG QuadPart;
     } u;
 #endif //MIDL_PASS
     ULONGLONG QuadPart;