I am sorry if this question has been asked before but I have looked at many answers and it hasn't helped me (or maybe I just don't know where to look exactly myself). I have been given this code to work with so its not my own code, hence why its harder for me to figure out. Plus I studied C# and not C++ even though there's probably not that big a difference. Here are the errors I'm getting:
Branscan2K.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) int __cdecl fnDatabase32(void)" (__imp_?fnDatabase32@@YAHXZ)
PicoloLiveImageView.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall EImage::EImage(void)" (__imp_??0?$EImage@UEBW8@@@@QAE@XZ)
PicoloLiveImageView.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: virtual __thiscall EImage::~EImage(void)" (__imp_??1?$EImage@UEBW8@@@@UAE@XZ)
PicoloLiveImageView.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) void __cdecl DoSave(char *)" (__imp_?DoSave@@YAXPAD@Z)
Answers I've seen so far range from missing library files to the definition of my functions not being in the program or project properties. Those haven't helped but it could be just the novice in me.