User rm67 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T06:55:48Zhttp://stackoverflow.com/feeds/user/33781http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/260096/unmanaged-c-libraries-differences-between-vs2005-and-vs20081Unmanaged C++ libraries - differences between VS2005 and VS2008?rm672008-11-03T21:49:14Z2009-06-09T10:10:10Z
<p>Hi,
I'll preface this by saying I'm a C# programmer who inherited horrible code with no documentation. I have an unmanaged C++ library wrapped with managed code that worked fine in VS2003 with .Net 1.1 Framework. I'm trying to get it upgraded to at least .Net 2.0.</p>
<p>I have the unmanaged C++ library that was compiled with "MSVC 8.x" (thus equivalent to VS 2005, I assume). I've been trying to migrate everything to VS2008 and still have some issues with this library at runtime.</p>
<p>My question is this: should this library work with VS2008? Or should I be developing in VS2005 if the library was compiled with VC8.x?</p>
<p>Any thoughts would be greatly appreciated. Thanks!</p>
http://stackoverflow.com/questions/260096/unmanaged-c-libraries-differences-between-vs2005-and-vs2008/260928#2609280Answer by rm67 for Unmanaged C++ libraries - differences between VS2005 and VS2008?rm672008-11-04T04:53:19Z2008-11-04T05:03:12Z<p>--Rob Prouse:<br>
The wrapper uses managed C++, no PInvoke. The wrapper is compiled into a DLL that is then used by another application (as you illustrated).</p>
<p>The legacy code produces graphics objects. When I try to get the handle to an image, I get a null exception instead. The debugger doesn't let me get farther into the code to figure out why. Everything else seems to run ok - the other data objects needed to create the image exist and appear to be correct. (Sorry, I know that is still a pretty vague description.)
<br>
<br>
--Rob Walker:<br>
I unfortunately do not have the source code.
Not sure about "using the STL across the library interfaces". Does graphics fall under that category?</p>
<p>I was able to get my application to run with using the /clr:oldSyntax switch, but that's where I get the null handles to images. I tried to put in all the modifications so that it would compile with /clr, but then I kept getting link errors that I couldn't resolve. (The linker kept complaining about not being able to find files even though those files were in the folder where it was looking.)</p>