1 | /* $Id: ioctl.h 28800 2010-04-27 08:22:32Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox L4/OSS audio - header for Linux IoCtls.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #ifndef ___VBOX_L4_OSS_IOCTL
|
---|
28 | #define ___VBOX_L4_OSS_IOCTL
|
---|
29 |
|
---|
30 | #define IOCPARM_MASK 0x3fff /* parameters must be < 16383 bytes */
|
---|
31 | #define IOC_VOID 0U << 30 /* no parameters */
|
---|
32 | #define IOC_IN 1U << 30 /* copy out parameters */
|
---|
33 | #define IOC_OUT 2U << 30 /* copy in parameters */
|
---|
34 | #define IOC_INOUT (IOC_IN|IOC_OUT)
|
---|
35 | /* the 0x20000000 is so we can distinguish new ioctl's from old */
|
---|
36 | #define _IO(x,y) ((int)(IOC_VOID|(x<<8)|y))
|
---|
37 | #define _IOR(x,y,t) ((int)(IOC_OUT|((sizeof(t)&IOCPARM_MASK)<<16)|(x<<8)|y))
|
---|
38 | #define _IOW(x,y,t) ((int)(IOC_IN|((sizeof(t)&IOCPARM_MASK)<<16)|(x<<8)|y))
|
---|
39 | /* this should be _IORW, but stdio got there first */
|
---|
40 | #define _IOWR(x,y,t) ((int)(IOC_INOUT|((sizeof(t)&IOCPARM_MASK)<<16)|(x<<8)|y))
|
---|
41 | #define _IOC_SIZE(x) ((x>>16)&IOCPARM_MASK)
|
---|
42 | #define _IOC_DIR(x) (x & 0xf0000000)
|
---|
43 | #define _IOC_NONE IOC_VOID
|
---|
44 | #define _IOC_READ IOC_OUT
|
---|
45 | #define _IOC_WRITE IOC_IN
|
---|
46 |
|
---|
47 | #endif /* !___VBOX_L4_OSS_IOCTL */
|
---|
48 |
|
---|