Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2005-03-16 03:46:17 +0300
committerDanny Smith <dannysmith@users.sourceforge.net>2005-03-16 03:46:17 +0300
commit3ce11ca8d0450957891962297242af94ec34392d (patch)
treeb743be68a63dc3310cf9ec22a47d71837f2bd803 /winsup/w32api
parent9d387e73b885388a3a1026cd97cfab9d0d1434d5 (diff)
* include/winnt.h (_LUID): Add structure. Correct LUID typedef.
Thanks to: Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
Diffstat (limited to 'winsup/w32api')
-rw-r--r--winsup/w32api/ChangeLog6
-rw-r--r--winsup/w32api/include/winnt.h5
2 files changed, 10 insertions, 1 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index d9c88e95f..77ac0620b 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -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):
diff --git a/winsup/w32api/include/winnt.h b/winsup/w32api/include/winnt.h
index 754807e92..29e14c340 100644
--- a/winsup/w32api/include/winnt.h
+++ b/winsup/w32api/include/winnt.h
@@ -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;