* 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:
parent
9d387e73b8
commit
3ce11ca8d0
|
@ -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>
|
2005-03-07 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
|
* include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
|
||||||
|
|
|
@ -2002,7 +2002,10 @@ typedef union _ULARGE_INTEGER {
|
||||||
#endif /* NONAMELESSUNION */
|
#endif /* NONAMELESSUNION */
|
||||||
ULONGLONG QuadPart;
|
ULONGLONG QuadPart;
|
||||||
} ULARGE_INTEGER, *PULARGE_INTEGER;
|
} ULARGE_INTEGER, *PULARGE_INTEGER;
|
||||||
typedef LARGE_INTEGER LUID,*PLUID;
|
typedef struct _LUID {
|
||||||
|
DWORD LowPart;
|
||||||
|
LONG HighPart;
|
||||||
|
} LUID, *PLUID;
|
||||||
#pragma pack(push,4)
|
#pragma pack(push,4)
|
||||||
typedef struct _LUID_AND_ATTRIBUTES {
|
typedef struct _LUID_AND_ATTRIBUTES {
|
||||||
LUID Luid;
|
LUID Luid;
|
||||||
|
|
Loading…
Reference in New Issue