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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_ADB_MOUSE_H
  2. #define _ASM_ADB_MOUSE_H
  3. /*
  4.  * linux/include/asm-m68k/adb_mouse.h
  5.  * header file for Macintosh ADB mouse driver
  6.  * 27-10-97 Michael Schmitz
  7.  * copied from:
  8.  * header file for Atari Mouse driver
  9.  * by Robert de Vries (robert@and.nl) on 19Jul93
  10.  */
  11. struct mouse_status {
  12. char buttons;
  13. short dx;
  14. short dy;
  15. int ready;
  16. int active;
  17. wait_queue_head_t wait;
  18. struct fasync_struct *fasyncptr;
  19. };
  20. #endif