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/i386/include/ioctl_ctx.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 /*
    2  *
    3  *      Copyright (C) 1994, Paul S. LaFollette, Jr. This software may be used,
    4  *      modified, copied, distributed, and sold, in both source and binary form
    5  *      provided that the above copyright and these terms are retained. Under
    6  *      no circumstances is the author responsible for the proper functioning
    7  *      of this software, nor does the author assume any responsibility
    8  *      for damages incurred with its use
    9  *
   10  * $FreeBSD$
   11  */
   12 
   13 /*
   14  *      ioctl constants for Cortex-I frame grabber
   15  */
   16 
   17 #ifndef _MACHINE_IOCTL_CTX_H_
   18 #define _MACHINE_IOCTL_CTX_H_
   19 
   20 #include <sys/ioccom.h>
   21 
   22 typedef char _CTX_LUTBUF[256];  /* look up table buffer */
   23 
   24 #define CTX_LIVE _IO('x', 1)            /* live video */
   25 #define CTX_GRAB _IO('x', 2)            /* frame grab */
   26 #define CTX_H_ORGANIZE _IO('x', 3)  /* file goes across screen (horiz. read) */
   27 #define CTX_V_ORGANIZE _IO('x', 4)  /* file goes down screen (vert. read)    */
   28 #define CTX_SET_LUT _IOW('x', 5, _CTX_LUTBUF)  /* set lookup table */
   29 #define CTX_GET_LUT _IOR('x', 6, _CTX_LUTBUF)  /* get lookup table */
   30 
   31 #endif /* !_MACHINE_IOCTL_CTX_H_ */

Cache object: a1a49e3e9d7c85af6ea695e01aeaee69


[ 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.