Re: Is there something basic that I have missed on the upgrade to VS2005?
- From: "Stephen Howe" <sjhoweATdialDOTpipexDOTcom>
- Date: Tue, 10 Jan 2006 16:36:23 -0000
> It is a COM import library and as far as I can see is not relatied to the
> STL code I am using.
It is not ADO by any chance?
With ADO you do have to "rename" EOF (End of File) as it confuses EOF as
defined in <stdio.h> with its own EOF definition.
I say "rename" in quotes because the #import statement supports renaming of
symbols to prevent name collision - we took advantage of this to rename
"EOF" in ADO as "ADOEOF".
Now it may be that you need to do the same.
If you have used #import for this 3rd party DLL, see if you can find files
on your hard disk
3rdpartyname.TLH
3rdpartyname.TLI
They are the header include and inline functions generated by #import.
Searching through these in an editor might give you an idea as to what
collides.
Stephen Howe
.
- References:
- Is there something basic that I have missed on the upgrade to VS2005?
- From: Andy
- Re: Is there something basic that I have missed on the upgrade to VS2005?
- From: Andy
- Re: Is there something basic that I have missed on the upgrade to VS2005?
- From: Ulrich Eckhardt
- Re: Is there something basic that I have missed on the upgrade to VS2005?
- From: Andy
- Is there something basic that I have missed on the upgrade to VS2005?
- Prev by Date: Re: Is there something basic that I have missed on the upgrade to VS2005?
- Next by Date: libcp.lib from PSDK version 3790.1830 incompatible with STL on VC++ 2003
- Previous by thread: Re: Is there something basic that I have missed on the upgrade to VS2005?
- Next by thread: Re: Is there something basic that I have missed on the upgrade to VS2005?
- Index(es):
Relevant Pages
|