Author: cwittich
Date: Sun Jun 7 21:27:44 2009
New Revision: 41339
URL:
http://svn.reactos.org/svn/reactos?rev=41339&view=rev
Log:
fix definition of LUID
Modified:
trunk/reactos/include/psdk/winnt.h
trunk/reactos/include/reactos/idl/lsa.idl
Modified: trunk/reactos/include/psdk/winnt.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/winnt.h?rev=4…
==============================================================================
--- trunk/reactos/include/psdk/winnt.h [iso-8859-1] (original)
+++ trunk/reactos/include/psdk/winnt.h [iso-8859-1] Sun Jun 7 21:27:44 2009
@@ -2936,7 +2936,8 @@
ULONGLONG QuadPart;
} ULARGE_INTEGER, *PULARGE_INTEGER;
typedef struct _LUID {
- LARGE_INTEGER_ORDER(LONG)
+ DWORD LowPart;
+ LONG HighPart;
} LUID, *PLUID;
#pragma pack(push,4)
typedef struct _LUID_AND_ATTRIBUTES {
Modified: trunk/reactos/include/reactos/idl/lsa.idl
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/idl/lsa.id…
==============================================================================
--- trunk/reactos/include/reactos/idl/lsa.idl [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/idl/lsa.idl [iso-8859-1] Sun Jun 7 21:27:44 2009
@@ -11,7 +11,7 @@
cpp_quote("#ifndef _WINNT_H")
typedef struct _LUID {
- ULONG LowPart;
+ DWORD LowPart;
LONG HighPart;
} LUID, *PLUID;
cpp_quote("#endif")