Is it safe to load dll compiled in Visual studio 2005 into application compiled in the Visual studio 6?
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
Is it safe to load dll compiled in Visual studio 2005 into application compiled in the Visual studio 6?
-
Is it safe to load dll compiled in Visual studio 2005 into application compiled in the Visual studio 6?
-
Is it safe to load dll compiled in Visual studio 2005 into application compiled in the Visual studio 6?
That depends on the interface of the DLL. If COM-dll or C-dll that static link to the CRT then no problem. If exporting C++ interfaces that makes use of the STL or uses shared heap, then the DLL must be compiled using the same version of Visual Studio.