aboutsummaryrefslogtreecommitdiff
path: root/hidio.h
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-01-01 01:06:11 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-01-01 01:06:11 +0000
commit5e357ed1cc0c85e950d6ab5fc27d249df7fae2bf (patch)
tree3ff8140fb99dd260460b8621b77fd42b9f96e1e4 /hidio.h
parent14e67c85f9cac496dad3d4e77dfb5e40f4cd94b0 (diff)
renamed debug_print() to debug_post() since its a wrapper to post()
svn path=/trunk/externals/io/hidio/; revision=7116
Diffstat (limited to 'hidio.h')
-rw-r--r--hidio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/hidio.h b/hidio.h
index e7d08c5..907ecb3 100644
--- a/hidio.h
+++ b/hidio.h
@@ -42,7 +42,7 @@ typedef void t_clock;
#define HIDIO_MAJOR_VERSION 0
#define HIDIO_MINOR_VERSION 0
-/* static char *version = "$Revision: 1.12 $"; */
+/* static char *version = "$Revision: 1.13 $"; */
/*------------------------------------------------------------------------------
* MACRO DEFINES
@@ -150,7 +150,7 @@ typedef struct _hid_element
unsigned char relative; // relative data gets output everytime
t_int min; // from device report
t_int max; // from device report
- t_float instance; // usage page/usage instance # ([absolute throttle 2 163(
+ t_float instance; // usage page/usage instance # (e.g. [absolute x 2 163( )
t_int value; // output the sum of events in a poll for relative axes
t_int previous_value; //only output on change on abs and buttons
} t_hid_element;
@@ -168,7 +168,7 @@ extern unsigned short element_count[MAX_DEVICES];
*/
/* support functions */
-void debug_print(t_int debug_level, const char *fmt, ...);
+void debug_post(t_int debug_level, const char *fmt, ...);
void debug_error(t_hidio *x, t_int debug_level, const char *fmt, ...);
void hidio_output_event(t_hidio *x, t_hid_element *output_data);