Author: gschneider
Date: Sat Aug 8 17:10:01 2009
New Revision: 42519
URL:
http://svn.reactos.org/svn/reactos?rev=42519&view=rev
Log:
Revert r42518: no user mode types in DDK
Modified:
trunk/reactos/include/ddk/ntdef.h
Modified: trunk/reactos/include/ddk/ntdef.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/ntdef.h?rev=42…
==============================================================================
--- trunk/reactos/include/ddk/ntdef.h [iso-8859-1] (original)
+++ trunk/reactos/include/ddk/ntdef.h [iso-8859-1] Sat Aug 8 17:10:01 2009
@@ -441,12 +441,12 @@
typedef union _LARGE_INTEGER {
_ANONYMOUS_STRUCT struct
{
- DWORD LowPart;
+ ULONG LowPart;
LONG HighPart;
} DUMMYSTRUCTNAME;
struct
{
- DWORD LowPart;
+ ULONG LowPart;
LONG HighPart;
} u;
#endif //MIDL_PASS
@@ -459,13 +459,13 @@
typedef union _ULARGE_INTEGER {
_ANONYMOUS_STRUCT struct
{
- DWORD LowPart;
- DWORD HighPart;
+ ULONG LowPart;
+ ULONG HighPart;
} DUMMYSTRUCTNAME;
struct
{
- DWORD LowPart;
- DWORD HighPart;
+ ULONG LowPart;
+ ULONG HighPart;
} u;
#endif //MIDL_PASS
ULONGLONG QuadPart;