#include <stdio.h>
#include <stdlib.h>
#include "XPLMCamera.h"
XPLM_API void XPLMControlCamera(XPLMCameraControlDuration inHowLong, XPLMCameraControl_f inControlFunc, void * inRefcon) {
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 XPLMDontControlCamera(void) {
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 int XPLMIsCameraBeingControlled(XPLMCameraControlDuration * outCameraControlDuration) {
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 XPLMReadCameraPosition(XPLMCameraPosition_t * outCameraPosition) {
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();
}