adb_mouse.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_ADB_MOUSE_H
  2. #define _LINUX_ADB_MOUSE_H
  3. /*
  4.  * linux/include/linux/mac_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. struct wait_queue *wait;
  18. struct fasync_struct *fasyncptr;
  19. };
  20. #endif