Linux Audio

Check our new training course

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