diff options
Diffstat (limited to 'hid.h')
-rw-r--r-- | hid.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -11,7 +11,7 @@ */ #include "input_arrays.h" -static char *version = "$Revision: 1.6 $"; +static char *version = "$Revision: 1.7 $"; /*------------------------------------------------------------------------------ * CLASS DEF @@ -24,11 +24,11 @@ typedef struct _hid t_int x_fd; t_symbol *x_devname; t_int x_device_number; + long x_locID; t_clock *x_clock; - t_int x_read_ok; - t_int x_started; t_int x_delay; - long x_locID; + t_int x_started; + t_int x_device_open; } t_hid; @@ -50,5 +50,6 @@ t_int hid_open_device(t_hid *x, t_int device_number); t_int hid_close_device(t_hid *x); t_int hid_devicelist_refresh(t_hid* x); t_int hid_output_events(t_hid *x) ; +void hid_platform_specific_free(t_hid *x); #endif /* #ifndef _HID_H */ |