summaryrefslogtreecommitdiffstats
path: root/include/asm-m68k/adb_mouse.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-09-19 19:15:08 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-09-19 19:15:08 +0000
commit03ba4131783cc9e872f8bb26a03f15bc11f27564 (patch)
tree88db8dba75ae06ba3bad08e42c5e52efc162535c /include/asm-m68k/adb_mouse.h
parent257730f99381dd26e10b832fce4c94cae7ac1176 (diff)
- Merge with Linux 2.1.121.
- Bugfixes.
Diffstat (limited to 'include/asm-m68k/adb_mouse.h')
-rw-r--r--include/asm-m68k/adb_mouse.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/asm-m68k/adb_mouse.h b/include/asm-m68k/adb_mouse.h
new file mode 100644
index 000000000..824113662
--- /dev/null
+++ b/include/asm-m68k/adb_mouse.h
@@ -0,0 +1,23 @@
+#ifndef _ASM_ADB_MOUSE_H
+#define _ASM_ADB_MOUSE_H
+
+/*
+ * linux/include/asm-m68k/adb_mouse.h
+ * header file for Macintosh ADB mouse driver
+ * 27-10-97 Michael Schmitz
+ * copied from:
+ * header file for Atari Mouse driver
+ * by Robert de Vries (robert@and.nl) on 19Jul93
+ */
+
+struct mouse_status {
+ char buttons;
+ short dx;
+ short dy;
+ int ready;
+ int active;
+ struct wait_queue *wait;
+ struct fasync_struct *fasyncptr;
+};
+
+#endif