Subversion Repositories f9daq

Rev

Rev 351 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
351 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_EXIT                          2       /* control type: command, callback function: ExitCB */
18
#define  p1_STOP                          3       /* control type: command, callback function: StopCB */
19
#define  p1_GOTOEND                       4       /* control type: command, callback function: GoToEndCB */
20
#define  p1_GOTOZERO                      5       /* control type: command, callback function: GoToZeroCB */
21
#define  p1_RESET                         6       /* control type: command, callback function: ResetCB */
22
#define  p1_START                         7       /* control type: command, callback function: StartCB */
23
#define  p1_COM1                          8       /* control type: numeric, callback function: (none) */
24
#define  p1_VMON                          9       /* control type: numeric, callback function: (none) */
25
#define  p1_COM2                          10      /* control type: numeric, callback function: (none) */
26
#define  p1_GRAPH                         11      /* control type: strip, callback function: (none) */
27
#define  p1_SPLITTER_2                    12      /* control type: splitter, callback function: (none) */
28
#define  p1_SPLITTER                      13      /* control type: splitter, callback function: (none) */
29
#define  p1_SPLITTER_4                    14      /* control type: splitter, callback function: (none) */
30
#define  p1_SPLITTER_3                    15      /* control type: splitter, callback function: (none) */
31
#define  p1_RAZDALJA                      16      /* control type: numeric, callback function: (none) */
32
#define  p1_HITROSTX                      17      /* control type: numeric, callback function: (none) */
33
#define  p1_STOPPOS                       18      /* control type: numeric, callback function: (none) */
34
#define  p1_STARTPOS                      19      /* control type: numeric, callback function: (none) */
35
#define  p1_POZICIJA                      20      /* control type: numeric, callback function: (none) */
36
 
37
 
38
     /* Control Arrays: */
39
 
40
#define  CTRLARRAY                        1
41
 
42
     /* Menu Bars, Menus, and Menu Items: */
43
 
44
          /* (no menu bars in the resource file) */
45
 
46
 
47
     /* Callback Prototypes: */
48
 
49
int  CVICALLBACK ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
50
int  CVICALLBACK GoToEndCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
51
int  CVICALLBACK GoToZeroCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
52
int  CVICALLBACK ResetCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
53
int  CVICALLBACK StartCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
54
int  CVICALLBACK StopCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
55
 
56
 
57
#ifdef __cplusplus
58
    }
59
#endif