/**************************************************************************/
 
/* 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  P1                               1
 
#define  P1_TEST                          2       /* control type: command, callback function: TestCB */
 
#define  P1_EXIT                          3       /* control type: command, callback function: ExitCB */
 
#define  P1_U_1                           4       /* control type: numeric, callback function: (none) */
 
#define  P1_I_1                           5       /* control type: numeric, callback function: (none) */
 
#define  P1_BOX_1                         6       /* control type: radioButton, callback function: SetMaskCB */
 
#define  P1_READ                          7       /* control type: command, callback function: ReadCB */
 
#define  P1_SET                           8       /* control type: command, callback function: SetCB */
 
#define  P1_IMON_1                        9       /* control type: numeric, callback function: (none) */
 
#define  P1_VMON_1                        10      /* control type: numeric, callback function: (none) */
 
#define  P1_TIMERON                       11      /* control type: binary, callback function: TimerOnOffCB */
 
#define  P1_LOG                           12      /* control type: radioButton, callback function: LogToFileCB */
 
#define  P1_CVCC_1                        13      /* control type: LED, callback function: (none) */
 
#define  P1_TIMER                         14      /* control type: timer, callback function: TimerCB */
 
#define  P1_ONOFF                         15      /* control type: binary, callback function: SwitchOnOffCB */
 
#define  P1_TINTERVAL                     16      /* control type: numeric, callback function: SetIntervalCB */
 
#define  P1_GRAPH_1                       17      /* control type: strip, callback function: (none) */
 
#define  P1_GRAPH                         18      /* control type: strip, 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 ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
 
int  CVICALLBACK LogToFileCB(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 SetCB(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 SetMaskCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
 
int  CVICALLBACK SwitchOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
 
int  CVICALLBACK TestCB(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