Author: gschneider
Date: Sat Aug 8 17:01:38 2009
New Revision: 42518
URL:
http://svn.reactos.org/svn/reactos?rev=42518&view=rev
Log:
ULONG->DWORD as seen on MSDN for (U)LARGE_INTEGER
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:01:38 2009
@@ -441,12 +441,12 @@
typedef union _LARGE_INTEGER {
_ANONYMOUS_STRUCT struct
{
- ULONG LowPart;
+ DWORD LowPart;
LONG HighPart;
} DUMMYSTRUCTNAME;
struct
{
- ULONG LowPart;
+ DWORD LowPart;
LONG HighPart;
} u;
#endif //MIDL_PASS
@@ -459,13 +459,13 @@
typedef union _ULARGE_INTEGER {
_ANONYMOUS_STRUCT struct
{
- ULONG LowPart;
- ULONG HighPart;
+ DWORD LowPart;
+ DWORD HighPart;
} DUMMYSTRUCTNAME;
struct
{
- ULONG LowPart;
- ULONG HighPart;
+ DWORD LowPart;
+ DWORD HighPart;
} u;
#endif //MIDL_PASS
ULONGLONG QuadPart;