Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
236 | 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 PANEL 1 |
||
17 | #define PANEL_CONNECT 2 /* control type: command, callback function: ConnectCB */ |
||
18 | #define PANEL_EXIT 3 /* control type: command, callback function: ExitCB */ |
||
19 | #define PANEL_SEND 4 /* control type: command, callback function: SendCB */ |
||
20 | #define PANEL_TXT 5 /* control type: string, callback function: (none) */ |
||
21 | |||
22 | |||
23 | /* Control Arrays: */ |
||
24 | |||
25 | /* (no control arrays in the resource file) */ |
||
26 | |||
27 | |||
28 | /* Menu Bars, Menus, and Menu Items: */ |
||
29 | |||
30 | /* (no menu bars in the resource file) */ |
||
31 | |||
32 | |||
33 | /* Callback Prototypes: */ |
||
34 | |||
35 | int CVICALLBACK ConnectCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
36 | int CVICALLBACK ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
37 | int CVICALLBACK SendCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
||
38 | |||
39 | |||
40 | #ifdef __cplusplus |
||
41 | } |
||
42 | #endif |