Deleted Added
full compact
syscons.h (78161) syscons.h (78956)
1/*-
2 * Copyright (c) 1995-1998 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) 1995-1998 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/dev/syscons/syscons.h 78161 2001-06-13 10:58:39Z peter $
28 * $FreeBSD: head/sys/dev/syscons/syscons.h 78956 2001-06-29 08:24:56Z yokota $
29 */
30
31#ifndef _DEV_SYSCONS_SYSCONS_H_
32#define _DEV_SYSCONS_SYSCONS_H_
33
34/* machine-dependent part of the header */
35
36#ifdef PC98

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

123#define BELL_DURATION ((5 * hz + 99) / 100)
124#define BELL_PITCH 800
125#endif
126
127/* virtual terminal buffer */
128typedef struct sc_vtb {
129 int vtb_flags;
130#define VTB_VALID (1 << 0)
29 */
30
31#ifndef _DEV_SYSCONS_SYSCONS_H_
32#define _DEV_SYSCONS_SYSCONS_H_
33
34/* machine-dependent part of the header */
35
36#ifdef PC98

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

123#define BELL_DURATION ((5 * hz + 99) / 100)
124#define BELL_PITCH 800
125#endif
126
127/* virtual terminal buffer */
128typedef struct sc_vtb {
129 int vtb_flags;
130#define VTB_VALID (1 << 0)
131#define VTB_ALLOCED (1 << 1)
131 int vtb_type;
132#define VTB_INVALID 0
133#define VTB_MEMORY 1
134#define VTB_FRAMEBUFFER 2
135#define VTB_RINGBUFFER 3
136 int vtb_cols;
137 int vtb_rows;
138 int vtb_size;

--- 483 unchanged lines hidden ---
132 int vtb_type;
133#define VTB_INVALID 0
134#define VTB_MEMORY 1
135#define VTB_FRAMEBUFFER 2
136#define VTB_RINGBUFFER 3
137 int vtb_cols;
138 int vtb_rows;
139 int vtb_size;

--- 483 unchanged lines hidden ---