diff options
author | sos <sos@FreeBSD.org> | 1996-09-30 23:00:58 +0000 |
---|---|---|
committer | sos <sos@FreeBSD.org> | 1996-09-30 23:00:58 +0000 |
commit | 1b6b2c9e3b2613c32aa390f7337514cd7cd0ef74 (patch) | |
tree | eb82a1732e293d4edc84a1260901a012266e0872 /sys/alpha/include/console.h | |
parent | c8132b2e31d6c5dc8067b94e551d8618819697ff (diff) | |
download | FreeBSD-src-1b6b2c9e3b2613c32aa390f7337514cd7cd0ef74.zip FreeBSD-src-1b6b2c9e3b2613c32aa390f7337514cd7cd0ef74.tar.gz |
Fix a couble of nasties regarding mouse pointer and different
resolutions.
Allow middle mouse button to be used for pasting.
Also added the beginnings of support for a splash page.
Diffstat (limited to 'sys/alpha/include/console.h')
-rw-r--r-- | sys/alpha/include/console.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/alpha/include/console.h b/sys/alpha/include/console.h index 9fc33d3..3e641a7 100644 --- a/sys/alpha/include/console.h +++ b/sys/alpha/include/console.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: console.h,v 1.23 1996/06/25 08:54:34 sos Exp $ + * $Id: console.h,v 1.24 1996/09/21 14:57:54 bde Exp $ */ #ifndef _MACHINE_CONSOLE_H_ @@ -98,6 +98,7 @@ #define VT_AUTO 0 /* switching is automatic */ #define VT_PROCESS 1 /* switching controlled by prog */ +#define VT_KERNEL 255 /* switching controlled in kernel */ struct vt_mode { char mode; @@ -262,6 +263,7 @@ typedef struct ssaver ssaver_t; #define RBT 0x85 /* boot machine */ #define DBG 0x86 /* call debugger */ #define SUSP 0x87 /* suspend power (APM) */ +#define SPSC 0x88 /* toggle splash/text screen */ #define F(x) ((x)+F_FN-1) #define S(x) ((x)+F_SCR-1) |