[PD-cvs] externals/io/hidio hidio.h, 1.16, 1.17 hidio_windows.c, 1.4, 1.5

Hans-Christoph Steiner eighthave at users.sourceforge.net
Tue Jan 2 21:45:42 CET 2007


Update of /cvsroot/pure-data/externals/io/hidio
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3420

Modified Files:
	hidio.h hidio_windows.c 
Log Message:
fixed ff function return values across files

Index: hidio.h
===================================================================
RCS file: /cvsroot/pure-data/externals/io/hidio/hidio.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** hidio.h	2 Jan 2007 20:40:49 -0000	1.16
--- hidio.h	2 Jan 2007 20:45:40 -0000	1.17
***************
*** 195,200 ****
  
  /* cross-platform force feedback functions */
! extern t_int hidio_ff_autocenter(t_hidio *x, t_float value);
! extern t_int hidio_ff_gain(t_hidio *x, t_float value);
  extern t_int hidio_ff_motors(t_hidio *x, t_float value);
  extern t_int hidio_ff_continue(t_hidio *x);
--- 195,200 ----
  
  /* cross-platform force feedback functions */
! extern void hidio_ff_autocenter(t_hidio *x, t_float value);
! extern void hidio_ff_gain(t_hidio *x, t_float value);
  extern t_int hidio_ff_motors(t_hidio *x, t_float value);
  extern t_int hidio_ff_continue(t_hidio *x);

Index: hidio_windows.c
===================================================================
RCS file: /cvsroot/pure-data/externals/io/hidio/hidio_windows.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** hidio_windows.c	2 Jan 2007 20:40:49 -0000	1.4
--- hidio_windows.c	2 Jan 2007 20:45:40 -0000	1.5
***************
*** 521,525 ****
  
  /* cross-platform force feedback functions */
! t_int hidio_ff_autocenter( t_hidio *x, t_float value )
  {
  	return EXIT_SUCCESS;
--- 521,525 ----
  
  /* cross-platform force feedback functions */
! void hidio_ff_autocenter( t_hidio *x, t_float value )
  {
  	return EXIT_SUCCESS;
***************
*** 527,531 ****
  
  
! t_int hidio_ff_gain( t_hidio *x, t_float value )
  {
  	return EXIT_SUCCESS;
--- 527,531 ----
  
  
! void hidio_ff_gain( t_hidio *x, t_float value )
  {
  	return EXIT_SUCCESS;





More information about the Pd-cvs mailing list