#include #include /* Needed if linking in external compiler; harmless otherwise */ #include #include "quaddet.h" #include "quaddetui.h" 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 */ quaddet_init(); quaddetui_init(); RunUserInterface(); return 0; }