atari_joystick.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_ATARI_JOYSTICK_H
  2. #define _LINUX_ATARI_JOYSTICK_H
  3. /*
  4.  * linux/include/linux/atari_joystick.h
  5.  * header file for Atari Joystick driver
  6.  * by Robert de Vries (robert@and.nl) on 19Jul93
  7.  */
  8. void atari_joystick_interrupt(char*);
  9. int atari_joystick_init(void);
  10. extern int atari_mouse_buttons;
  11. struct joystick_status {
  12. char fire;
  13. char dir;
  14. int ready;
  15. int active;
  16. wait_queue_head_t wait;
  17. };
  18. #endif