aboutsummaryrefslogtreecommitdiff
path: root/hidio_linux.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-05-27 11:25:12 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-05-27 11:25:12 +0000
commita2f3e6eceb49a5117992c595acc6e914ae1d7a4b (patch)
treeea46fbbe701f593fd336a71f0f11328fcba22e5a /hidio_linux.c
parent71e6d095b72119c5274c744613105f7f676603b9 (diff)
first sketch of output message with variable atom types
svn path=/trunk/externals/io/hidio/; revision=9924
Diffstat (limited to 'hidio_linux.c')
-rw-r--r--hidio_linux.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/hidio_linux.c b/hidio_linux.c
index 72e57f4..89fef49 100644
--- a/hidio_linux.c
+++ b/hidio_linux.c
@@ -437,6 +437,30 @@ void hidio_print(t_hidio* x)
hidio_print_element_list(x);
}
+void hidio_write_packet(void)
+{
+ debug_post(LOG_DEBUG,"hidio_write_packet");
+}
+
+
+void hidio_write_event_symbol_int(t_hidio *x, t_symbol *type, t_int code,
+ t_int instance, t_int value)
+{
+ debug_post(LOG_DEBUG,"hidio_write_event_symbol_int");
+}
+
+void hidio_write_event_symbols(t_hidio *x, t_symbol *type, t_symbol *code,
+ t_int instance, t_int value)
+{
+ debug_post(LOG_DEBUG,"hidio_write_event_symbols");
+}
+
+void hidio_write_event_ints(t_hidio *x, t_int type, t_int code,
+ t_int instance, t_int value)
+{
+ debug_post(LOG_DEBUG,"hidio_write_event_ints");
+}
+
t_int hidio_open_device(t_hidio *x, short device_number)
{