This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DigitalSettings.h
47 lines (32 loc) · 2.24 KB
/
DigitalSettings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**************************************************************************/
/* 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 DIGPANEL 1
#define DIGPANEL_STR_DIGCHANNELNAME 2 /* control type: string, callback function: (none) */
#define DIGPANEL_NUM_DIGCH_LINE 3 /* control type: numeric, callback function: NUM_DIG_LINE_CALLBACK */
#define DIGPANEL_NUM_DIGCHANNEL 4 /* control type: numeric, callback function: (none) */
#define DIGPANEL_CMD_DIGALLOWCHANGE 5 /* control type: command, callback function: CMD_DIGALLOWCHANGE_CALLBACK */
#define DIGPANEL_CMD_DIGSETCHANGES 6 /* control type: command, callback function: CMD_DIGSETCHANGES_CALLBACK */
#define DIGPANEL_CMD_DONEDIG 7 /* control type: command, callback function: CMD_DONEDIG_CALLBACK */
#define DIGPANEL_TEXTMSG 8 /* control type: textMsg, callback function: (none) */
#define DIGPANEL_CHK_DIGRESET 9 /* control type: radioButton, 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 CMD_DIGALLOWCHANGE_CALLBACK(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
int CVICALLBACK CMD_DIGSETCHANGES_CALLBACK(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
int CVICALLBACK CMD_DONEDIG_CALLBACK(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
int CVICALLBACK NUM_DIG_LINE_CALLBACK(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
#ifdef __cplusplus
}
#endif