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/include/sys/ioc_sound.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 /*      sys/ioc_sound.h - Sound ioctl() command codes.  Author: Kees J. Bot
    2  *                                                              23 Nov 2002
    3  *
    4  */
    5 
    6 #ifndef _S_I_SOUND_H
    7 #define _S_I_SOUND_H
    8 
    9 #include <minix/ioctl.h>
   10 
   11 /* Soundcard DSP ioctls. */
   12 #define DSPIORATE       _IOR('s', 1, unsigned int)
   13 #define DSPIOSTEREO     _IOR('s', 2, unsigned int)
   14 #define DSPIOSIZE       _IOR('s', 3, unsigned int)
   15 #define DSPIOBITS       _IOR('s', 4, unsigned int)
   16 #define DSPIOSIGN       _IOR('s', 5, unsigned int)
   17 #define DSPIOMAX        _IOW('s', 6, unsigned int)
   18 #define DSPIORESET      _IO ('s', 7)
   19 
   20 /* Soundcard mixer ioctls. */
   21 #define MIXIOGETVOLUME          _IORW('s', 10, struct volume_level)
   22 #define MIXIOGETINPUTLEFT       _IORW('s', 11, struct inout_ctrl)
   23 #define MIXIOGETINPUTRIGHT      _IORW('s', 12, struct inout_ctrl)
   24 #define MIXIOGETOUTPUT          _IORW('s', 13, struct inout_ctrl)
   25 #define MIXIOSETVOLUME          _IORW('s', 20, struct volume_level)
   26 #define MIXIOSETINPUTLEFT       _IORW('s', 21, struct inout_ctrl)
   27 #define MIXIOSETINPUTRIGHT      _IORW('s', 22, struct inout_ctrl)
   28 #define MIXIOSETOUTPUT          _IORW('s', 23, struct inout_ctrl)
   29 
   30 #endif /* _S_I_SOUND_H */

Cache object: ecb59521a4f15e7f9d24649ef6b52648


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