The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/joystick.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      $NetBSD: joystick.h,v 1.2 2005/12/03 17:10:46 christos Exp $    */
    2 
    3 #ifndef _SYS_JOYSTICK_H_
    4 #define _SYS_JOYSTICK_H_
    5 
    6 #include <sys/types.h>
    7 #include <sys/ioctl.h>
    8 
    9 struct joystick {
   10     int x;
   11     int y;
   12     int b1;
   13     int b2;
   14 };
   15 
   16 #define JOY_SETTIMEOUT    _IOW('J', 1, int)    /* set timeout */
   17 #define JOY_GETTIMEOUT    _IOR('J', 2, int)    /* get timeout */
   18 #define JOY_SET_X_OFFSET  _IOW('J', 3, int)    /* set offset on X-axis */
   19 #define JOY_SET_Y_OFFSET  _IOW('J', 4, int)    /* set offset on X-axis */
   20 #define JOY_GET_X_OFFSET  _IOR('J', 5, int)    /* get offset on X-axis */
   21 #define JOY_GET_Y_OFFSET  _IOR('J', 6, int)    /* get offset on Y-axis */
   22 
   23 #endif /* _SYS_JOYSTICK_H_ */

Cache object: 96a696ee60d3a2cc15930c14c6fb3707


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.