fix definition of LUID

svn path=/trunk/; revision=41339
This commit is contained in:
Christoph von Wittich 2009-06-07 17:27:44 +00:00
parent 294aec4619
commit 3df8d98cc9
2 changed files with 3 additions and 2 deletions

View file

@ -2936,7 +2936,8 @@ typedef union _ULARGE_INTEGER {
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 {

View file

@ -11,7 +11,7 @@ typedef LSAPR_HANDLE *PLSAPR_HANDLE;
cpp_quote("#ifndef _WINNT_H")
typedef struct _LUID {
ULONG LowPart;
DWORD LowPart;
LONG HighPart;
} LUID, *PLUID;
cpp_quote("#endif")