Posted by Robert Hurley on July 17, 1999 at 15:05:46:
I have pasted below error messages generated while linking my .OBJ files together. Each of my .CPP files (e.g. (WINDOW, WINDOWl, MAIN) compile without any errors, but when I try to build and create a .EXE file I get the errors messages below regarding the member functions of my Windowl.cpp implementation file.
Does Anyone know the origin of this problem?
Any help or suggestions would greatly appreciated!
Thanks, Rob.
*********************************************************************
compiling...
windowl.cpp
Linking...
main.obj : error LNK2001: unresolved external symbol "public: void __thiscall WindowList::Traverse(void (__cdecl*)(class Window *))" (?Traverse@WindowList@@QAEXP6AXPAVWindow@@@Z@Z)
main.obj : error LNK2001: unresolved external symbol "public: __thiscall WindowList::~WindowList(void)" (??1WindowList@@QAE@XZ)
main.obj : error LNK2001: unresolved external symbol "public: void __thiscall WindowList::DeleteWindow(void)" (?DeleteWindow@WindowList@@QAEXXZ)
main.obj : error LNK2001: unresolved external symbol "public: void __thiscall WindowList::PrevWindow(void)" (?PrevWindow@WindowList@@QAEXXZ)
main.obj : error LNK2001: unresolved external symbol "public: void __thiscall WindowList::NextWindow(void)" (?NextWindow@WindowList@@QAEXXZ)
main.obj : error LNK2001: unresolved external symbol "public: void __thiscall WindowList::AddWindow(char *)" (?AddWindow@WindowList@@QAEXPAD@Z)
main.obj : error LNK2001: unresolved external symbol "public: __thiscall WindowList::WindowList(void)" (??0WindowList@@QAE@XZ)
Debug/window_mov.exe : fatal error LNK1120: 7 unresolved externals
Error executing link.exe.
window_mov.exe - 8 error(s), 0 warning(s)
*****************************************************