mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-21 00:07:36 +08:00
* 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>
|
||||
|
||||
* include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user