aboutsummaryrefslogtreecommitdiff
path: root/hid.h
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-06-06 22:39:51 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-06-06 22:39:51 +0000
commit0060c5e3213b60801346e9aadb2cb1523c7762b2 (patch)
treec96fc239a1e4d46abc09295019875618001b3744 /hid.h
parent2f76356218d772155f218efd2209613376e06440 (diff)
- cleaned up CFLAGS and tried higher optimization, which failed to build
- implemented a second outlet which outputs data upon [refresh( to build a popup menu to select the device by name using a [popup]. This uncovered a bug, which is not fixed, it seems that everytime you open a device, that device gets added again to the list of devices svn path=/trunk/externals/hcs/hid/; revision=3122
Diffstat (limited to 'hid.h')
-rw-r--r--hid.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/hid.h b/hid.h
index 80fdced..c83363d 100644
--- a/hid.h
+++ b/hid.h
@@ -14,7 +14,7 @@
#define HID_MAJOR_VERSION 0
#define HID_MINOR_VERSION 5
-static char *version = "$Revision: 1.14 $";
+static char *version = "$Revision: 1.15 $";
/*------------------------------------------------------------------------------
* CLASS DEF
@@ -30,6 +30,8 @@ typedef struct _hid
t_int x_delay;
t_int x_started;
t_int x_device_open;
+ t_outlet *x_data_outlet;
+ t_outlet *x_device_name_outlet;
} t_hid;