Delivered-To: listarch-cygwin AT sourceware DOT cygnus DOT com Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com From: Christopher Faylor Message-ID: <19990216202149.A16511@cygnus.com> Date: Tue, 16 Feb 1999 20:21:49 -0500 To: Krzysztof Nikiel , cygwin mailing list Subject: Re: B20.1: Windows32 header tiny patch References: <000101be5978$14101b20$8b9eccc2 AT amd-based-pc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93i In-Reply-To: <000101be5978$14101b20$8b9eccc2@amd-based-pc>; from Krzysztof Nikiel on Mon, Feb 15, 1999 at 12:02:25PM +0100 On Mon, Feb 15, 1999 at 12:02:25PM +0100, Krzysztof Nikiel wrote: >I have encountered lines in 'Windows32/Functions.h' >which look somewhat strange: > >#ifndef UNICODE_ONLY >#include >#endif /* !UNICODE_ONLY */ > >#ifndef ANSI_ONLY >#include >#endif /* !ANSI_ONLY */ > >If UNICODE_ONLY is defined then don't include >UnicodeFunctions.h. > >It probably should look like this: > >#ifndef UNICODE_ONLY >#include >#endif /* !UNICODE_ONLY */ > >#ifndef ANSI_ONLY >#include >#endif /* !ANSI_ONLY */ > >If I am right then the following patch should be applied: >[snip] This sure looks right to me. Thank you for tracking this down. I've applied this to our main sources. -chris