Hey people,
im trying to get an old EVC++ to Visual Studio, fixed the /MDd problem and the W_Char problem. but when i try to compile i get over 300 linker errors. ive got the idea im missing lib files or something, but i added the old lib directory's and stil i cant get it going.
Linking...
RTCView.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertColumn(int,unsigned short const *,int,int,int)" ( InsertColumn@CListCtrl@@QAAHHPBGHHH@Z)
stateview.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertColumn(int,unsigned short const *,int,int,int)" ( InsertColumn@CListCtrl@@QAAHHPBGHHH@Z)
Tablog.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertColumn(int,unsigned short const *,int,int,int)" ( InsertColumn@CListCtrl@@QAAHHPBGHHH@Z)
tempview.obj : error LNK2019: unresolved external symbol "public: int __cdecl CListCtrl::InsertColumn(int,unsigned short const *,int,int,int)" ( InsertColumn@CListCtrl@@QAAHHPBGHHH@Z) referenced in function __unwind$85916
FaultLog.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertColumn(int,unsigned short const *,int,int,int)" ( InsertColumn@CListCtrl@@QAAHHPBGHHH@Z)
infoView.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertColumn(int,unsigned short const *,int,int,int)" ( InsertColumn@CListCtrl@@QAAHHPBGHHH@Z)
InputView.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertColumn(int,unsigned short const *,int,int,int)" ( InsertColumn@CListCtrl@@QAAHHPBGHHH@Z)
stateview.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertItem(unsigned int,int,unsigned short const *,unsigned int,unsigned int,int,long)" ( InsertItem@CListCtrl@@QAAHIHPBGIIHJ@Z)
Tablog.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertItem(unsigned int,int,unsigned short const *,unsigned int,unsigned int,int,long)" ( InsertItem@CListCtrl@@QAAHIHPBGIIHJ@Z)
tempview.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertItem(unsigned int,int,unsigned short const *,unsigned int,unsigned int,int,long)" ( InsertItem@CListCtrl@@QAAHIHPBGIIHJ@Z)
outputView.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertItem(unsigned int,int,unsigned short const *,unsigned int,unsigned int,int,long)" ( InsertItem@CListCtrl@@QAAHIHPBGIIHJ@Z)
ParameterDCU.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertItem(unsigned int,int,unsigned short const *,unsigned int,unsigned int,int,long)" ( InsertItem@CListCtrl@@QAAHIHPBGIIHJ@Z)
Program DCU.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertItem(unsigned int,int,unsigned short const *,unsigned int,unsigned int,int,long)" ( InsertItem@CListCtrl@@QAAHIHPBGIIHJ@Z)
RTCView.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertItem(unsigned int,int,unsigned short const *,unsigned int,unsigned int,int,long)" ( InsertItem@CListCtrl@@QAAHIHPBGIIHJ@Z)
activefaults.obj : error LNK2019: unresolved external symbol "public: int __cdecl CListCtrl::InsertItem(unsigned int,int,unsigned short const *,unsigned int,unsigned int,int,long)" ( InsertItem@CListCtrl@@QAAHIHPBGIIHJ@Z) referenced in function "public: void __cdecl ErrorView::checkFaults(void)" ( checkFaults@ErrorView@@QAAXXZ)
FaultLog.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertItem(unsigned int,int,unsigned short const *,unsigned int,unsigned int,int,long)" ( InsertItem@CListCtrl@@QAAHIHPBGIIHJ@Z)
infoView.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertItem(unsigned int,int,unsigned short const *,unsigned int,unsigned int,int,long)" ( InsertItem@CListCtrl@@QAAHIHPBGIIHJ@Z)
InputView.obj : error LNK2001: unresolved external symbol "public: int __cdecl CListCtrl::InsertItem(unsigned int,int,unsigned short const *,unsigned int,unsigned int,int,long)" ( InsertItem@CListCtrl@@QAAHIHPBGIIHJ@Z)
substring.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __cdecl ATL::CStringT<unsigned short,class StrTraitMFC_DLL<unsigned short,class ATL::ChTraitsOS<unsigned short> > >::~CStringT<unsigned short,class StrTraitMFC_DLL<unsigned short,class ATL::ChTraitsOS<unsigned short> > >(void)" (__imp_ 1 $CStringT@GV $StrTraitMFC_DLL@GV $ChTraitsOS@G@ATL@@@@@ATL@@QAA@XZ)
I think were getting the idea, i didnt post all my link errors because it would fill a page :)
Is there anyone who can help me fix this problem