aboutsummaryrefslogtreecommitdiff
path: root/hidio_linux.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-01-03 06:33:25 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-01-03 06:33:25 +0000
commite3b1733304a5d04daa137e93b86c65f95b65ca8a (patch)
treede11321417d353be20776d4d2e6706bea5952d5d /hidio_linux.c
parente961c094b31ef51858974ce1d881a2a21104bd7a (diff)
builds on all platforms now, but doesn't link on MinGW
svn path=/trunk/externals/io/hidio/; revision=7146
Diffstat (limited to 'hidio_linux.c')
-rw-r--r--hidio_linux.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/hidio_linux.c b/hidio_linux.c
index e9a821a..48c3d8b 100644
--- a/hidio_linux.c
+++ b/hidio_linux.c
@@ -594,53 +594,53 @@ short get_device_number_from_usage(short device_number,
/* ------------------------------------------------------------------------------ */
/* cross-platform force feedback functions */
-t_int hidio_ff_autocenter( t_hidio *x, t_float value )
+void hidio_ff_autocenter( t_hidio *x, t_float value )
{
- return EXIT_SUCCESS;
+
}
-t_int hidio_ff_gain( t_hidio *x, t_float value )
+void hidio_ff_gain( t_hidio *x, t_float value )
{
- return EXIT_SUCCESS;
+
}
-t_int hidio_ff_motors( t_hidio *x, t_float value )
+void hidio_ff_motors( t_hidio *x, t_float value )
{
- return EXIT_SUCCESS;
+
}
-t_int hidio_ff_continue( t_hidio *x )
+void hidio_ff_continue( t_hidio *x )
{
- return EXIT_SUCCESS;
+
}
-t_int hidio_ff_pause( t_hidio *x )
+void hidio_ff_pause( t_hidio *x )
{
- return EXIT_SUCCESS;
+
}
-t_int hidio_ff_reset( t_hidio *x )
+void hidio_ff_reset( t_hidio *x )
{
- return EXIT_SUCCESS;
+
}
-t_int hidio_ff_stopall( t_hidio *x )
+void hidio_ff_stopall( t_hidio *x )
{
- return EXIT_SUCCESS;
+
}
// these are just for testing...
-t_int hidio_ff_fftest ( t_hidio *x, t_float value)
+void hidio_ff_fftest ( t_hidio *x, t_float value)
{
- return EXIT_SUCCESS;
+
}