Re: Linking problem

2004-11-26 Thread Larry Hall
At 02:14 AM 11/26/2004, you wrote: >Dear All, > > I use RegisterDeviceNotification Win32 API in my >program. While compiling under cygwin, linker reports >that cannot find _RegisterDeviceNotification symbol. >And I searched and found that >RegisterDeviceNotification's text is contained in >libuser

Re: Linking (?) problem with ccze

2003-02-14 Thread jon ewing
Hi again, Sorry, should have probably added, I'm using pcre3.7 and gcc 3.2. I've included the entire output from the make process below: thanks jon. jon@shuttle (.../tmp/ccze-0.1.190) % make make -C doc all make[1]: Entering directory `/home/jon/tmp/ccze-0.1.190/doc' sed -e "s,@VERSION\@,0.1.1

RE: linking problem, please help

2002-12-23 Thread [EMAIL PROTECTED]
From: Trimurthi, Swamy(IE10) [EMAIL PROTECTED] Date: Mon, 23 Dec 2002 07:17:48 -0700 To: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: RE: linking problem, please help Hi Igor, Thanks for the information and guidance. I will avoid sending personal mails hereafter. regards, Trimurth

RE: linking problem, please help

2002-12-23 Thread Dockeen
Well, in your code: > >#include > > > > int main() > > { > > cout<<"\n hello world"; > > return 0; > > } I see one thing wrong. The cout functions name comes from the standard namespace, so you either have to add: using namespace std; or qualify the name, i.e. std::cout I don't know

RE: linking problem, please help

2002-12-23 Thread Trimurthi, Swamy(IE10)
t; Cc: [EMAIL PROTECTED] > Subject: Re: linking problem, please help > > Trimurthi, > > The cygwin mailing list is the proper place for such inquiries. It is > strongly discouraged to send personal mail with such requests, and they > will, in general, be ignored. I

Re: linking problem, please help

2002-12-23 Thread Igor Pechtchanski
Trimurthi, The cygwin mailing list is the proper place for such inquiries. It is strongly discouraged to send personal mail with such requests, and they will, in general, be ignored. I've forwarded this request to the proper mailing list, and reset the Reply-to: field accordingly for your conven

Re: linking problem

2002-01-07 Thread Pavel Tsekov
You won't be able to do this (at least ATM). MSVC and gcc use different ways to describe the C++ symbols. Guenther Sohler wrote: > Hallo Group, > > I downloaded the qt-2.3 library for windows. these have visual studio 6.0 > library format., and i want to link > the libraries to my object files