#include #include #include "Cam_movers.h" /* Public Functions */ void cam_move_ui_init(void); /* Public variables */ static int err; extern int panelHandle; int __stdcall WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow) { if (InitCVIRTE(hInstance, 0, 0) == 0) /* Needed if linking in external compiler; harmless otherwise */ return -1; /* out of memory */ cam_move_ui_init(); RunUserInterface(); return 0; }