/**************************************************************************/ /* 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 #ifdef __cplusplus extern "C" { #endif /* Panels and Controls: */ #define INT_PANEL 1 /* callback function: Int_PanelCB */ #define INT_PANEL_CMD_MOVE_Y 2 /* control type: command, callback function: CB_XPS_MOVE_Y */ #define INT_PANEL_CMD_XPS_TRIG 3 /* control type: command, callback function: CB_XPS_TRIG */ #define INT_PANEL_CMD_FDI_READ 4 /* control type: command, callback function: CB_FDI_READ */ #define INT_PANEL_GRAPH_F 5 /* control type: graph, callback function: (none) */ #define INT_PANEL_GRAPH_V 6 /* control type: graph, callback function: (none) */ #define INT_PANEL_CMD_FDI_SCAN 7 /* control type: command, callback function: CB_FDI_SCAN */ #define INT_PANEL_CMD_FDI_ACQ 8 /* control type: command, callback function: CB_FDI_ACQ */ #define INT_PANEL_CMD_FDI_SEND 9 /* control type: command, callback function: CB_FDI_DEND */ #define INT_PANEL_CMD_FDI_INIT 10 /* control type: command, callback function: CB_FDI_INIT */ #define INT_PANEL_CMD_MOVE_X 11 /* control type: command, callback function: CB_XPS_MOVE_X */ #define INT_PANEL_POS_Y 12 /* control type: numeric, callback function: (none) */ #define INT_PANEL_NMEAS 13 /* control type: numeric, callback function: (none) */ #define INT_PANEL_GAIN 14 /* control type: numeric, callback function: FDI_Gain_CB */ #define INT_PANEL_FREQ 15 /* control type: numeric, callback function: (none) */ #define INT_PANEL_X_MAX 16 /* control type: numeric, callback function: (none) */ #define INT_PANEL_DX 17 /* control type: numeric, callback function: (none) */ #define INT_PANEL_NBREP 18 /* control type: numeric, callback function: (none) */ #define INT_PANEL_CONDCUM 19 /* control type: numeric, callback function: (none) */ #define INT_PANEL_NBX 20 /* control type: numeric, callback function: (none) */ #define INT_PANEL_X_MIN 21 /* control type: numeric, callback function: (none) */ #define INT_PANEL_POS_X 22 /* control type: numeric, callback function: (none) */ #define INT_PANEL_STRING_FDI_READ 23 /* control type: string, callback function: (none) */ #define INT_PANEL_STRING_FDI_CMD 24 /* control type: string, callback function: (none) */ #define INT_PANEL_BIN_SWITCH 25 /* control type: binary, callback function: (none) */ #define INT_PANEL_PICTURE 26 /* control type: picture, callback function: (none) */ /* Control Arrays: */ /* (no control arrays in the resource file) */ /* Menu Bars, Menus, and Menu Items: */ #define MENUBAR 1 #define MENUBAR_MENU1 2 /* Callback Prototypes: */ int CVICALLBACK CB_FDI_ACQ(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK CB_FDI_DEND(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK CB_FDI_INIT(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK CB_FDI_READ(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK CB_FDI_SCAN(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK CB_XPS_MOVE_X(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK CB_XPS_MOVE_Y(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK CB_XPS_TRIG(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK FDI_Gain_CB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); int CVICALLBACK Int_PanelCB(int panel, int event, void *callbackData, int eventData1, int eventData2); #ifdef __cplusplus } #endif