/**************************************************************************/ /* LabWindows/CVI User Interface Resource (UIR) Include File */ /* Copyright (c) National Instruments 2015. All Rights Reserved. */ /* */ /* WARNING: Do not add to, delete from, or otherwise modify the contents */ /* of this include file. */ /**************************************************************************/ #include #ifdef __cplusplus extern "C" { #endif /* Panels and Controls: */ #define IN_PANEL 1 /* callback function: panelCB */ #define IN_PANEL_TEXTBOX_STATUS 2 /* control type: textBox, callback function: (none) */ #define IN_PANEL_COMMANDBUTTON 3 /* control type: command, callback function: Initialize */ #define IN_PANEL_LED 4 /* control type: LED, callback function: (none) */ #define IN_PANEL_TIMER 5 /* control type: timer, callback function: Init_timer */ #define IN_PANEL_PICTURE 6 /* control type: picture, callback function: (none) */ /* Control Arrays: */ /* (no control arrays in the resource file) */ /* Menu Bars, Menus, and Menu Items: */ /* (no menu bars in the resource file) */ /* Callback Prototypes: */ int CVICALLBACK Init_timer(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK Initialize(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK panelCB(int panel, int event, void *callbackData, int eventData1, int eventData2); #ifdef __cplusplus } #endif