Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
279 | f9daq | 1 | /**************************************************************************/ |
2 | /* LabWindows/CVI User Interface Resource (UIR) Include File */ |
||
3 | /* */ |
||
4 | /* WARNING: Do not add to, delete from, or otherwise modify the contents */ |
||
5 | /* of this include file. */ |
||
6 | /**************************************************************************/ |
||
7 | |||
8 | #include <userint.h> |
||
9 | |||
10 | #ifdef __cplusplus |
||
11 | extern "C" { |
||
12 | #endif |
||
13 | |||
14 | /* Panels and Controls: */ |
||
15 | |||
16 | #define P1 1 |
||
17 | #define P1_TEST 2 /* control type: command, callback function: TestCB */ |
||
18 | #define P1_EXIT 3 /* control type: command, callback function: ExitCB */ |
||
19 | #define P1_U_1 4 /* control type: numeric, callback function: (none) */ |
||
20 | #define P1_I_1 5 /* control type: numeric, callback function: (none) */ |
||
21 | #define P1_BOX_1 6 /* control type: radioButton, callback function: SetMaskCB */ |
||
22 | #define P1_READ 7 /* control type: command, callback function: ReadCB */ |
||
23 | #define P1_SET 8 /* control type: command, callback function: SetCB */ |
||
24 | #define P1_IMON_1 9 /* control type: numeric, callback function: (none) */ |
||
25 | #define P1_VMON_1 10 /* control type: numeric, callback function: (none) */ |
||
26 | #define P1_TIMERON 11 /* control type: binary, callback function: TimerOnOffCB */ |
||
27 | #define P1_LOG 12 /* control type: radioButton, callback function: LogToFileCB */ |
||
28 | #define P1_CVCC_1 13 /* control type: LED, callback function: (none) */ |
||
29 | #define P1_TIMER 14 /* control type: timer, callback function: TimerCB */ |
||
30 | #define P1_ONOFF 15 /* control type: binary, callback function: SwitchOnOffCB */ |
||
31 | #define P1_TINTERVAL 16 /* control type: numeric, callback function: SetIntervalCB */ |
||
32 | #define P1_GRAPH_1 17 /* control type: strip, callback function: (none) */ |
||
33 | #define P1_GRAPH 18 /* control type: strip, callback function: (none) */ |
||
34 | |||
35 | |||
36 | /* Control Arrays: */ |
||
37 | |||
38 | /* (no control arrays in the resource file) */ |
||
39 | |||
40 | |||
41 | /* Menu Bars, Menus, and Menu Items: */ |
||
42 | |||
43 | /* (no menu bars in the resource file) */ |
||
44 | |||
45 | |||
46 | /* Callback Prototypes: */ |
||
47 | |||
48 | int CVICALLBACK ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
49 | int CVICALLBACK LogToFileCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
50 | int CVICALLBACK ReadCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
51 | int CVICALLBACK SetCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
52 | int CVICALLBACK SetIntervalCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
53 | int CVICALLBACK SetMaskCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
54 | int CVICALLBACK SwitchOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
55 | int CVICALLBACK TestCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
56 | int CVICALLBACK TimerCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
57 | int CVICALLBACK TimerOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
58 | |||
59 | |||
60 | #ifdef __cplusplus |
||
61 | } |
||
62 | #endif |