What should I do to recompile my static library (originally written in VS6) in visual studio 2008?
Posted
by user370387
on Stack Overflow
See other posts from Stack Overflow
or by user370387
Published on 2010-06-18T14:31:42Z
Indexed on
2010/06/18
14:33 UTC
Read the original article
Hit count: 208
visual-studio-2008
- There is a static library A with c++ classes wrapped by a C API in VS6.
- I developed a static library B in VS6 using callbacks from library A.
- The library B is used by the program C (commercial software) as a "user defined library" and linked to produce the program D.
Questions:
1) When program C uses VS 6 it works, should it work fine with VS 2008? Because it doesn't. 2) When I tried to recompile library B in VS 2008 it gave me a .lib file with only 28KB, and the old one had more than 2MB. Is it ok? What Am I probably doing wrong?
Thanks in advance
© Stack Overflow or respective owner