1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _LINUX_ATARI_JOYSTICK_H 3 #define _LINUX_ATARI_JOYSTICK_H 4 5 /* 6 * linux/include/linux/atari_joystick.h 7 * header file for Atari Joystick driver 8 * by Robert de Vries (robert@and.nl) on 19Jul93 9 */ 10 11 void atari_joystick_interrupt(char*); 12 int atari_joystick_init(void); 13 extern int atari_mouse_buttons; 14 15 struct joystick_status { 16 char fire; 17 char dir; 18 int ready; 19 int active; 20 wait_queue_head_t wait; 21 }; 22 23 #endif