]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/winnt.h (_LUID): Add structure. Correct LUID typedef.
authorDanny Smith <dannysmith@users.sourceforge.net>
Wed, 16 Mar 2005 00:46:17 +0000 (00:46 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Wed, 16 Mar 2005 00:46:17 +0000 (00:46 +0000)
Thanks to:
Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>

winsup/w32api/ChangeLog
winsup/w32api/include/winnt.h

index d9c88e95fb60e160556436d46bd390e0f8229e0e..77ac0620b7ff38ff8abf3047fb84428e7ef485f6 100644 (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):
index 754807e92755401865df5a0b385894b26bb644a3..29e14c340fedbdb2a0ec08510826a060b24f98a2 100644 (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;
This page took 0.040779 seconds and 5 git commands to generate.