Problem Storing MFD instance.

Poscik

Addon Developer
Addon Developer
Joined
Mar 28, 2008
Messages
512
Reaction score
3
Points
18
Location
Sulejówek
Hello! Just implemented storing MFD data from this article:
http://www.orbiterwiki.org/wiki/Storing_MFD_Instances

No code errors, but 5 unresolved externals.

Code:
Gyro.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall std::out_of_range::out_of_range(class std::basic_string,class std::allocator > const &)" (__imp_??0out_of_range@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z) referenced in function "protected: void __thiscall std::vector >::_Xran(void)const " (?_Xran@?$vector@PAVMFDData@@V?$allocator@PAVMFDData@@@std@@@std@@IBEXXZ) 

Gyro.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall std::out_of_range::~out_of_range(void)" (??1out_of_range@std@@UAE@XZ) 

Gyro.obj : error LNK2001: unresolved external symbol "public: __thiscall std::out_of_range::out_of_range(class std::out_of_range const &)" (??0out_of_range@std@@QAE@ABV01@@Z) 

Gyro.obj : error LNK2001: unresolved external symbol "public: __thiscall std::logic_error::logic_error(class std::logic_error const &)" (??0logic_error@std@@QAE@ABV01@@Z) 

Gyro.obj : error LNK2001: unresolved external symbol "public: __thiscall exception::exception(class exception const &)" (??0exception@@QAE@ABV0@@Z)

What libraries have to be added in Input? Now I have orbiter.lib orbitersdk.lib user32.lib gdi32.lib
 
Top