#include #include /* Needed if linking in external compiler; harmless otherwise */ #include #include "b9900.h" #include "b9900ui.h" int __stdcall WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow) { int b9900_ID; if (InitCVIRTE(hInstance, 0, 0) == 0) /* Needed if linking in external compiler; harmless otherwise */ return -1; /* out of memory */ b9900_init(0, 17, &b9900_ID); b9900ui_init(b9900_ID); RunUserInterface(); return 0; }