summaryrefslogtreecommitdiffstats
path: root/include/asm-m68k/atari_mouse.h
blob: 003bf2b21d520c7cbb80b3461682852c97077497 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _LINUX_ATARI_MOUSE_H
#define _LINUX_ATARI_MOUSE_H

/*
 * linux/include/linux/atari_mouse.h
 * 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