Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Date: Thu, 13 Nov 2003 13:25:14 -0500 From: Christopher Faylor To: cygwin AT cygwin DOT com Subject: Re: Problems using WIN32 api Message-ID: <20031113182514.GB28184@redhat.com> Reply-To: cygwin AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com References: <3418F3471F1CA4409901547349FFAE2E0CE2C5 AT ftrdmel2 DOT rd DOT francetelecom DOT fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i On Thu, Nov 13, 2003 at 11:40:37AM -0600, Brian Ford wrote: >I'll take a shot at a few of these I know. > >On Thu, 13 Nov 2003, zze-BDE balg011 VAUCHER Laurent DvSI/SIReS/GRE wrote: > >> I'm trying to understand how to build an application using >> both Cygwin and (some) WIN32 APIs and I stumbled into a >> problem using exactly whet the FAQ says (even if it says >> it is not up to date). >> >> Example program : main.c >> -------------------------- >> #include >> int main(int arc, char *argv[]) >> { >> BOOL sm; >> /* The following function is in USER32.DLL */ >> SystemParametersInfo(SPI_GETFONTSMOOTHING, 0, &sm, 0); >> return 0; >> } >> >> I tried compiling like the FAQ says I should : >> > gcc -o main main.c -luser32 >> >WFM. Try gcc --verbose -o main main.c -luser32 and see what it is finding >for -luser32. > >> All I get is "undefined reference to `SystemParametersInfoA AT 16`" >> Since it seems that the 'interface' libs live in /usr/lib/w32api, >> I tried to add -L/usr/lib/w32api, but the result is the same. >> >They should be searched automatically. As should libuser32.a. There is no reason to include it on the command line. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/