* include/winnt.h (_LUID): Add structure. Correct LUID typedef.

Thanks to:
	Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
This commit is contained in:
Danny Smith 2005-03-16 00:46:17 +00:00
parent 9d387e73b8
commit 3ce11ca8d0
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2005-03-16 Danny Smith <dannysmith@users.sourceforge.net>
* include/winnt.h (_LUID): Add structure. Correct LUID typedef.
Thanks to:
Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
2005-03-07 Danny Smith <dannysmith@users.sourceforge.net>
* include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):

View file

@ -2002,7 +2002,10 @@ typedef union _ULARGE_INTEGER {
#endif /* NONAMELESSUNION */
ULONGLONG QuadPart;
} ULARGE_INTEGER, *PULARGE_INTEGER;
typedef LARGE_INTEGER LUID,*PLUID;
typedef struct _LUID {
DWORD LowPart;
LONG HighPart;
} LUID, *PLUID;
#pragma pack(push,4)
typedef struct _LUID_AND_ATTRIBUTES {
LUID Luid;