home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / ABUSESRC.ZIP / AbuseSrc / imlib / port / joystick.c next >
Encoding:
C/C++ Source or Header  |  1995-07-23  |  283 b   |  18 lines

  1. #include "joy.hpp"
  2.  
  3. /* NULL joystick should be used for system where the joy
  4.    stick has not yet been ported */
  5.  
  6. int joy_fd;
  7.  
  8. int joy_init(int argc, char **argv)
  9. {
  10.   return 0;
  11. }
  12.  
  13. void joy_status(int &b1, int &b2, int &b3, int &xv, int &yv)
  14. {
  15.   xv=yv=b1=b2=b3=0;
  16. }
  17.  
  18.