atari_joystick.h (457B)
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 11void atari_joystick_interrupt(char*); 12int atari_joystick_init(void); 13extern int atari_mouse_buttons; 14 15struct joystick_status { 16 char fire; 17 char dir; 18 int ready; 19 int active; 20 wait_queue_head_t wait; 21}; 22 23#endif