This repository was 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
Expand file tree
/
Copy pathAnalogControl.h
More file actions
42 lines (30 loc) · 1.7 KB
/
AnalogControl.h
File metadata and controls
42 lines (30 loc) · 1.7 KB
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
/**************************************************************************/
/* LabWindows/CVI User Interface Resource (UIR) Include File */
/* Copyright (c) National Instruments 2006. All Rights Reserved. */
/* */
/* 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 CTRL_PANEL 1
#define CTRL_PANEL_NUMINITVAL 2
#define CTRL_PANEL_NUMFINALVAL 3
#define CTRL_PANEL_STRUNITS 4
#define CTRL_PANEL_NUMTIMESCALE 5
#define CTRL_PANEL_CMD_SETANALOG 6 /* callback function: CMD_SETANALAOG_CALLBACK */
#define CTRL_PANEL_STR_CHNAME 7
#define CTRL_PANEL_RING_CTRLMODE 8 /* callback function: RING_CTRLMODE_CALLBACK */
#define CTRL_PANEL_CMD_ANCANCEL 9 /* callback function: CMD_ANCANCEL_CALLBACK */
/* Menu Bars, Menus, and Menu Items: */
/* (no menu bars in the resource file) */
/* Callback Prototypes: */
int CVICALLBACK CMD_ANCANCEL_CALLBACK(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
int CVICALLBACK CMD_SETANALAOG_CALLBACK(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
int CVICALLBACK RING_CTRLMODE_CALLBACK(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
#ifdef __cplusplus
}
#endif