mac_mouse.h 433 B

1234567891011121314151617181920212223
  1. #ifndef _ASM_MAC_MOUSE_H
  2. #define _ASM_MAC_MOUSE_H
  3. /*
  4. * linux/include/asm-m68k/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. wait_queue_head_t wait;
  18. struct fasync_struct *fasyncptr;
  19. };
  20. #endif