I'm trying to compile something, but I have a linking error that says "unresolved external symbol." The error in it's entirety is
What causes this? How are such errors fixed?
Linking...
Creating library E:\My System Files\vstsdk2.4\vstgui.sf\drawtest\win\Debug\drawtest.lib and object E:\My System Files\vstsdk2.4\vstgui.sf\drawtest\win\Debug\drawtest.exp
cfileselector.obj : error LNK2019: unresolved external symbol __imp__GetSaveFileNameA@4 referenced in function "public: long __thiscall VSTGUI::CFileSelector::run(struct VstFileSelect *)" (?run@CFileSelector@VSTGUI@@QAEJPAUVstFileSelect@@@Z)
cfileselector.obj : error LNK2019: unresolved external symbol __imp__GetOpenFileNameA@4 referenced in function "public: long __thiscall VSTGUI::CFileSelector::run(struct VstFileSelect *)" (?run@CFileSelector@VSTGUI@@QAEJPAUVstFileSelect@@@Z)
E:\My System Files\vstsdk2.4\vstgui.sf\drawtest\win\Debug\drawtest.dll : fatal error LNK1120: 2 unresolved externals
What causes this? How are such errors fixed?