summaryrefslogtreecommitdiff
path: root/sys/arch/arc/include/joystick.h
blob: 39611c4a6fb90c361313f5bf4558cf56b9bc48be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*	$NetBSD: joystick.h,v 1.2 2000/02/22 11:26:02 soda Exp $	*/
/*	$OpenBSD: joystick.h,v 1.1 1998/05/05 05:44:43 imp Exp $ */
/*	NetBSD: joystick.h,v 1.1 1996/03/27 19:18:56 perry Exp 	*/

#ifndef _JOY_IOCTL_H_
#define _JOY_IOCTL_H_

#include <sys/ioccom.h>

struct joystick {
	int x;
	int y;
	int b1;
	int b2;
};

#define JOY_SETTIMEOUT    _IOW('J', 1, int)    /* set timeout */
#define JOY_GETTIMEOUT    _IOR('J', 2, int)    /* get timeout */
#define JOY_SET_X_OFFSET  _IOW('J', 3, int)    /* set offset on X-axis */
#define JOY_SET_Y_OFFSET  _IOW('J', 4, int)    /* set offset on X-axis */
#define JOY_GET_X_OFFSET  _IOR('J', 5, int)    /* get offset on X-axis */
#define JOY_GET_Y_OFFSET  _IOR('J', 6, int)    /* get offset on Y-axis */

#endif /* _JOY_IOCTL_H_ */