#include #include /* Needed if linking in external compiler; harmless otherwise */ #include #include "ls450.h" #include "ls450ui.h" int __stdcall WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow) { int ls450_ID; if (InitCVIRTE(hInstance, 0, 0) == 0) /* Needed if linking in external compiler; harmless otherwise */ return -1; /* out of memory */ ls450_init(0, 15, &ls450_ID); ls450ui_init(ls450_ID); RunUserInterface(); return 0; }