Deleted Added
full compact
consio.h (76798) consio.h (77251)
1/*-
2 * Copyright (c) 1991-1996 S�ren Schmidt
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
1/*-
2 * Copyright (c) 1991-1996 S�ren Schmidt
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * $FreeBSD: head/sys/sys/consio.h 76798 2001-05-18 08:52:56Z nik $
28 * $FreeBSD: head/sys/sys/consio.h 77251 2001-05-27 00:45:59Z dd $
29 */
30
31#ifndef _SYS_CONSIO_H_
32#define _SYS_CONSIO_H_
33
34#ifndef _KERNEL
35#include <sys/types.h>
36#endif

--- 74 unchanged lines hidden (view full) ---

111/* set the bell type to audible or visual */
112#define CONS_VISUAL_BELL (1 << 0)
113#define CONS_QUIET_BELL (1 << 1)
114#define CONS_BELLTYPE _IOW('c', 8, int)
115
116/* set the history (scroll back) buffer size (in lines) */
117#define CONS_HISTORY _IOW('c', 9, int)
118
29 */
30
31#ifndef _SYS_CONSIO_H_
32#define _SYS_CONSIO_H_
33
34#ifndef _KERNEL
35#include <sys/types.h>
36#endif

--- 74 unchanged lines hidden (view full) ---

111/* set the bell type to audible or visual */
112#define CONS_VISUAL_BELL (1 << 0)
113#define CONS_QUIET_BELL (1 << 1)
114#define CONS_BELLTYPE _IOW('c', 8, int)
115
116/* set the history (scroll back) buffer size (in lines) */
117#define CONS_HISTORY _IOW('c', 9, int)
118
119/* clear the history (scroll back) buffer */
120#define CONS_CLRHIST _IO('c', 10)
121
119/* mouse cursor ioctl */
120struct mouse_data {
121 int x;
122 int y;
123 int z;
124 int buttons;
125};
126typedef struct mouse_data mouse_data_t;

--- 289 unchanged lines hidden ---
122/* mouse cursor ioctl */
123struct mouse_data {
124 int x;
125 int y;
126 int z;
127 int buttons;
128};
129typedef struct mouse_data mouse_data_t;

--- 289 unchanged lines hidden ---