/**************************************************************************/
 
/* LabWindows/CVI User Interface Resource (UIR) Include File              */
 
/*                                                                        */
 
/* WARNING: Do not add to, delete from, or otherwise modify the contents  */
 
/*          of this include file.                                         */
 
/**************************************************************************/
 
 
 
#include <userint.h>
 
 
 
#ifdef __cplusplus
 
    extern "C" {
 
#endif
 
 
 
     /* Panels and Controls: */
 
 
 
#define  PANEL                            1
 
#define  PANEL_EXIT                       2       /* control type: command, callback function: ExitCB */
 
#define  PANEL_READ                       3       /* control type: command, callback function: ReadCB */
 
#define  PANEL_DRAW                       4       /* control type: command, callback function: DrawCB */
 
#define  PANEL_LOAD                       5       /* control type: command, callback function: LoadCB */
 
#define  PANEL_TEXTBOX                    6       /* control type: textBox, callback function: (none) */
 
#define  PANEL_TIMERON                    7       /* control type: binary, callback function: TimerOnOffCB */
 
#define  PANEL_TINTERVAL                  8       /* control type: numeric, callback function: SetIntervalCB */
 
#define  PANEL_TIMER                      9       /* control type: timer, callback function: TimerCB */
 
 
 
 
 
     /* 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 DrawCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
 
int  CVICALLBACK ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
 
int  CVICALLBACK LoadCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
 
int  CVICALLBACK ReadCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
 
int  CVICALLBACK SetIntervalCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
 
int  CVICALLBACK TimerCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
 
int  CVICALLBACK TimerOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
 
 
 
 
 
#ifdef __cplusplus
 
    }
 
#endif