#include <stdio.h>
#include <stdlib.h>
#include "XPLMInstance.h"
XPLM_API XPLMInstanceRef XPLMCreateInstance(XPLMObjectRef obj, const char ** datarefs) {
fprintf(stderr, "\n\ncalled into a stub library. cannot continue, aborting");
fprintf(stderr, "this really should not happen. check your dynamic libraries.\n\n");
abort();
}
XPLM_API void XPLMDestroyInstance(XPLMInstanceRef instance) {
fprintf(stderr, "\n\ncalled into a stub library. cannot continue, aborting");
fprintf(stderr, "this really should not happen. check your dynamic libraries.\n\n");
abort();
}
XPLM_API void XPLMInstanceSetPosition(XPLMInstanceRef instance, const XPLMDrawInfo_t * new_position, const float * data) {
fprintf(stderr, "\n\ncalled into a stub library. cannot continue, aborting");
fprintf(stderr, "this really should not happen. check your dynamic libraries.\n\n");
abort();
}