Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>, <http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
Message-ID: <779F20BCCE5AD31186A50008C75D9979171726@silldn_mail1.sanwaint.com>
From: "Fifer, Eric" <EFifer@sanwaint.com>
To: cygwin@sourceware.cygnus.com
Cc: "'Mumit Khan'" <khan@NanoTech.Wisc.EDU>
Subject: RE: g++ COM problem with function pointers and -O2
Date: Wed, 10 May 2000 11:51:55 +0100
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2650.21)
Content-Type: text/plain;
	charset="iso-8859-1"


After seeing the description of the C++ parser bug with function
attributes under the "g++/linker bug on cygwin1.1.0 (win32)"
thread, I went back to look at the code causing my problem.

I switched some declarations around, from:

  typedef HRESULT (STDAPICALLTYPE FNCOCREATEINSTANCEEX)
    (REFCLSID, IUnknown*, DWORD, COSERVERINFO*, DWORD, MULTI_QI*);

  FNCOCREATEINSTANCEEX *pfnCoCreateInstanceEx;

to:

  HRESULT STDAPICALLTYPE (*pfnCoCreateInstanceEx)(REFCLSID,
	IUnknown*, DWORD,COSERVERINFO*, DWORD, MULTI_QI*);

And this also works around my problem.

Could this be another manifestation of the same bug?

Thanks,

Eric Fifer



--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

