diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-10-16 18:56:38 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-10-16 18:56:38 +0000 |
commit | c58f75931455fa39eee6866e375b5791c6478fea (patch) | |
tree | 4941afb4376222061c2a617df76e0949198bf70a /sys/arch/i386/isa/pcvt/pcvt_ioctl.h | |
parent | dadb7bf9c6f6f6c27e774fd5edd5c5fd9c0b98b9 (diff) |
- Add support for a traditional PC display (16 colors and use the standard IBM
font) and make it the default mode. This is more or less a hack, since pcvt
was developed only to be a vt220 terminal emulator.
- Document new default mode in pcvt(4).
- Add -o option to scon(1) for toggling between the new and legacy modes.
Diffstat (limited to 'sys/arch/i386/isa/pcvt/pcvt_ioctl.h')
-rw-r--r-- | sys/arch/i386/isa/pcvt/pcvt_ioctl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/isa/pcvt/pcvt_ioctl.h b/sys/arch/i386/isa/pcvt/pcvt_ioctl.h index a702caf4320..68285ba0c3e 100644 --- a/sys/arch/i386/isa/pcvt/pcvt_ioctl.h +++ b/sys/arch/i386/isa/pcvt/pcvt_ioctl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcvt_ioctl.h,v 1.11 1999/09/29 22:29:09 aaron Exp $ */ +/* $OpenBSD: pcvt_ioctl.h,v 1.12 1999/10/16 18:56:36 aaron Exp $ */ /* * Copyright (c) 1992, 1995 Hellmuth Michaelis and Joerg Wunsch. @@ -479,6 +479,7 @@ struct pcvtinfo { /* compile time option values */ #define VGASETCOLMS _IOW('V', 115, int) /* set number of columns (80/132)*/ #define SETSCROLLSIZE _IOW('V', 116, u_short) /* scrollbuffer size */ +#define TOGGLEPCDISP _IOW('V', 117, int) /* toggle traditional pc mode */ /* * only useful if compiled with ``XSERVER'' defined, but always here: |