Mailing-List: contact cygwin-developers-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-developers-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin-developers AT sources DOT redhat DOT com X-Apparently-From: Message-ID: <3B8D5E10.12335784@yahoo.com> Date: Wed, 29 Aug 2001 17:26:40 -0400 From: Earnie Boyd X-Mailer: Mozilla 4.77 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: CD List Subject: [Fwd: [MinGW-dvlpr] [Fwd: [MinGW-cvs] CVS: w32api/include winnt.h,1.4,1.5]] Content-Type: multipart/mixed; boundary="------------AC4E0E705BFDF1AD38D31331" This is a multi-part message in MIME format. --------------AC4E0E705BFDF1AD38D31331 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit FYI. I'll update winsup/w32api after Danny updates the cvs.mingw.sourceforge.net files. Earnie. --------------AC4E0E705BFDF1AD38D31331 Content-Type: message/rfc822 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Apparently-To: earnie_boyd AT yahoo DOT com via web12105.mail.yahoo.com; 29 Aug 2001 13:29:45 -0700 (PDT) X-Track: 1: 40 Received: from usw-sf-fw2.sourceforge.net (EHLO usw-sf-list1.sourceforge.net) (216.136.171.252) by mta433.mail.yahoo.com with SMTP; 29 Aug 2001 13:29:45 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=usw-sf-list1.sourceforge.net) by usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 15cBxN-0007QV-00; Wed, 29 Aug 2001 13:29:01 -0700 Received: from web14503.mail.yahoo.com ([216.136.224.66]) by usw-sf-list1.sourceforge.net with smtp (Exim 3.31-VA-mm2 #1 (Debian)) id 15cBwP-0006lH-00 for ; Wed, 29 Aug 2001 13:28:01 -0700 Message-ID: <20010829202752 DOT 70342 DOT qmail AT web14503 DOT mail DOT yahoo DOT com> Received: from [203.97.2.243] by web14503.mail.yahoo.com via HTTP; Thu, 30 Aug 2001 06:27:52 EST From: =?iso-8859-1?q?Danny=20Smith?= Subject: Re: [MinGW-dvlpr] [Fwd: [MinGW-cvs] CVS: w32api/include winnt.h,1.4,1.5] To: mingw-dvlpr AT lists DOT sourceforge DOT net In-Reply-To: <3B8CF669 DOT F02923EC AT yahoo DOT com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: mingw-dvlpr-admin AT lists DOT sourceforge DOT net Errors-To: mingw-dvlpr-admin AT lists DOT sourceforge DOT net X-BeenThere: mingw-dvlpr AT lists DOT sourceforge DOT net X-Mailman-Version: 2.0.5 Precedence: bulk Reply-To: mingw-dvlpr AT lists DOT sourceforge DOT net List-Help: List-Post: List-Subscribe: , List-Id: MinGW Devlopers Discussion List List-Unsubscribe: , List-Archive: Date: Thu, 30 Aug 2001 06:27:52 +1000 (EST) X-Mozilla-Status2: 00000000 --- Earnie Boyd wrote: > This change has broken the build of Cygwin. > I see the problem. _ANONYMOUS_STRUCT is undefined if __cplusplus (because its part of C++ standard, not __extension__) I will revert change later today (unless you beat me to it) and try to find a different way of doing it. Danny > ../../../../src/winsup/cygwin/fhandler_floppy.cc: In method `off_t > fhandler_dev_floppy::lseek(long int, int)': > ../../../../src/winsup/cygwin/fhandler_floppy.cc:109: `union > _LARGE_INTEGER' has no member named `LowPart' > ../../../../src/winsup/cygwin/fhandler_floppy.cc:120: `union > _LARGE_INTEGER' has no member named `LowPart' > ../../../../src/winsup/cygwin/fhandler_floppy.cc:121: `union > _LARGE_INTEGER' has no member named `LowPart' > > Earnie. > ATTACHMENT part 2 message/rfc822 > To: mingw-cvs AT lists DOT sourceforge DOT net > From: Danny Smith > Subject: [MinGW-cvs] CVS: w32api/include winnt.h,1.4,1.5 > Reply-to: noreply AT sourceforge DOT lists > Date: Tue, 28 Aug 2001 14:56:18 -0700 > > This list will notify you of updates to the code stored in CVS. > Typically only developers with access to update the CVS are > interested in this list. However, this list can be beneficial to see > what is happening with your changes. If you wish to unsubscribe > please do so at > http://lists.sourceforge.net/lists/listinfo/mingw-cvs.Update of > /cvsroot/mingw/w32api/include > In directory usw-pr-cvs1:/tmp/cvs-serv10075/w32api/include > > Modified Files: > winnt.h > Log Message: > * include\winnt.h: Allow anonymous (Xxx.LowPart) or > non-anonymous (Xxx.u.LowPart) access to HighPart and > LowPart of a LARGE_INTEGER or ULARGE_INTEGER. > > > > Index: winnt.h > =================================================================== > RCS file: /cvsroot/mingw/w32api/include/winnt.h,v > retrieving revision 1.4 > retrieving revision 1.5 > diff -C2 -d -r1.4 -r1.5 > *** winnt.h 2001/08/15 02:52:26 1.4 > --- winnt.h 2001/08/28 21:56:16 1.5 > *************** > *** 1702,1720 **** > } EXCEPTION_POINTERS,*PEXCEPTION_POINTERS,*LPEXCEPTION_POINTERS; > typedef union _LARGE_INTEGER { > ! _ANONYMOUS_STRUCT struct { > ! DWORD LowPart; > ! LONG HighPart; > ! }_STRUCT_NAME(u); > ! LONGLONG QuadPart; > ! } LARGE_INTEGER; > ! typedef LARGE_INTEGER *PLARGE_INTEGER; > typedef union _ULARGE_INTEGER { > ! _ANONYMOUS_STRUCT struct { > ! DWORD LowPart; > ! DWORD HighPart; > ! }_STRUCT_NAME(u); > ! DWORDLONG QuadPart; > ! } ULARGE_INTEGER; > ! typedef ULARGE_INTEGER *PULARGE_INTEGER; > typedef LARGE_INTEGER LUID,*PLUID; > #pragma pack(push,4) > --- 1702,1730 ---- > } EXCEPTION_POINTERS,*PEXCEPTION_POINTERS,*LPEXCEPTION_POINTERS; > typedef union _LARGE_INTEGER { > ! struct { > ! DWORD LowPart; > ! LONG HighPart; > ! } u; > ! #if _ANONYMOUS_STRUCT > ! struct { > ! DWORD LowPart; > ! LONG HighPart; > ! }; > ! #endif /* _ANONYMOUS_STRUCT */ > ! LONGLONG QuadPart; > ! } LARGE_INTEGER, *PLARGE_INTEGER; > typedef union _ULARGE_INTEGER { > ! struct { > ! DWORD LowPart; > ! DWORD HighPart; > ! } u; > ! #if _ANONYMOUS_STRUCT > ! struct { > ! DWORD LowPart; > ! DWORD HighPart; > ! }; > ! #endif /* _ANONYMOUS_STRUCT */ > ! ULONGLONG QuadPart; > ! } ULARGE_INTEGER, *PULARGE_INTEGER; > typedef LARGE_INTEGER LUID,*PLUID; > #pragma pack(push,4) > > > _______________________________________________ > MinGW-cvs mailing list > MinGW-cvs AT lists DOT sourceforge DOT net > http://lists.sourceforge.net/lists/listinfo/mingw-cvs > http://travel.yahoo.com.au - Yahoo! Travel - Got Itchy feet? Get inspired! _______________________________________________ MinGW-dvlpr mailing list MinGW-dvlpr AT lists DOT sourceforge DOT net http://lists.sourceforge.net/lists/listinfo/mingw-dvlpr --------------AC4E0E705BFDF1AD38D31331-- _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com