|
libcid.lib is the lib file for old iostream of VC++ 6. The VC++7 do not have because it uses Standard C++ library. You can search the text and delete the text: #pragma comment(lib, "libcid.lib") and change all #include old IOstream headers to new #include.
Ex:
Old: #include <iostream.h>
New: #include <iostream> // No .h
Regards
TQN
|