aboutsummaryrefslogtreecommitdiff
path: root/hidio_windows.c
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_windows.c
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_windows.c')
-rw-r--r--hidio_windows.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/hidio_windows.c b/hidio_windows.c
index 2bc98ae..45a12ef 100644
--- a/hidio_windows.c
+++ b/hidio_windows.c
@@ -72,7 +72,7 @@ void hidio_build_element_list(t_hidio *x)
t_int hidio_print_element_list(t_hidio *x)
{
- debug_print(LOG_DEBUG,"hidio_print_element_list");
+ debug_post(LOG_DEBUG,"hidio_print_element_list");
return (0);
@@ -248,7 +248,7 @@ void hidio_ff_print( t_hidio *x )
t_int hidio_get_events(t_hidio *x)
{
- //debug_print(LOG_DEBUG,"hidio_get_events");
+ //debug_post(LOG_DEBUG,"hidio_get_events");
return (0);
}
@@ -256,7 +256,7 @@ t_int hidio_get_events(t_hidio *x)
t_int hidio_open_device(t_hidio *x, t_int device_number)
{
- debug_print(LOG_DEBUG,"hidio_open_device");
+ debug_post(LOG_DEBUG,"hidio_open_device");
t_int result = 0;
@@ -266,7 +266,7 @@ t_int hidio_open_device(t_hidio *x, t_int device_number)
t_int hidio_close_device(t_hidio *x)
{
- debug_print(LOG_DEBUG,"hidio_close_device");
+ debug_post(LOG_DEBUG,"hidio_close_device");
t_int result = 0;
@@ -276,7 +276,7 @@ t_int hidio_close_device(t_hidio *x)
t_int hidio_build_device_list(t_hidio *x)
{
- debug_print(LOG_DEBUG,"hidio_build_device_list");
+ debug_post(LOG_DEBUG,"hidio_build_device_list");
/*
* The Windows DDK "hid.dll" has to be loaded manually because Windows gets
@@ -321,7 +321,7 @@ void hidio_print(t_hidio *x)
void hidio_platform_specific_free(t_hidio *x)
{
- debug_print(LOG_DEBUG,"hidio_platform_specific_free");
+ debug_post(LOG_DEBUG,"hidio_platform_specific_free");
/* only call this if the last instance is being freed */
if (hidio_instance_count < 1)
{