February 26, 200719 yr Working on a Dll-Project using SimConnect, I added a Definition File to my Project as explained in the Simconnect-SDK Documentation. Unfortunaly, after compiling and linking I get 2 Linker-Errors:error LNK2001: unresolved external symbol DLLStarterror LNK2001: unresolved external symbol DLLStopAll required Linrarys to make the Gauge Working (an as explained in the SDK-doc) are included. Without SimConnect, the Gauge compiles and links fine, works fine in FSX too.Could anyone help me to solve this Problem? Thank You.Kind RegardsSvenEdit:The following Code (found in another Forum) solves the Problem. Added to my main.cpp file: EXTERN_C __declspec(dllexport) int DLLStart() { // called by SimConnect when dll is loaded return 0; // return 0 for S_OK or load is cancelled}EXTERN_C __declspec(dllexport) int DLLStop(){ // called by SimConnect when dll is unloaded return 0;}
Create an account or sign in to comment