Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/bebox/include Remove obsoleted headers.



details:   https://anonhg.NetBSD.org/src/rev/5abf8caea1d4
branches:  trunk
changeset: 768068:5abf8caea1d4
user:      kiyohara <kiyohara%NetBSD.org@localhost>
date:      Sun Aug 07 14:36:35 2011 +0000

description:
Remove obsoleted headers.

diffstat:

 sys/arch/bebox/include/mouse.h      |  49 -------------------------------------
 sys/arch/bebox/include/pc/display.h |  47 -----------------------------------
 sys/arch/bebox/include/pccons.h     |  21 ---------------
 3 files changed, 0 insertions(+), 117 deletions(-)

diffs (129 lines):

diff -r d87e7161dbee -r 5abf8caea1d4 sys/arch/bebox/include/mouse.h
--- a/sys/arch/bebox/include/mouse.h    Sun Aug 07 14:03:15 2011 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,49 +0,0 @@
-/*     $NetBSD: mouse.h,v 1.1 1997/10/14 06:48:28 sakamoto Exp $       */
-
-/*-
- * Copyright (c) 1992, 1993 Erik Forsberg.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- *
- * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
- * NO EVENT SHALL I BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef _BEBOX_MOUSE_H_
-#define _BEBOX_MOUSE_H_
-
-struct mouseinfo {
-       unsigned char status;
-       char xmotion, ymotion;
-};
-
-#define BUTSTATMASK    0x07    /* Any mouse button down if any bit set */
-#define BUTCHNGMASK    0x38    /* Any mouse button changed if any bit set */
-
-#define BUT3STAT       0x01    /* Button 3 down if set */
-#define BUT2STAT       0x02    /* Button 2 down if set */
-#define BUT1STAT       0x04    /* Button 1 down if set */
-#define BUT3CHNG       0x08    /* Button 3 changed if set */
-#define BUT2CHNG       0x10    /* Button 2 changed if set */
-#define BUT1CHNG       0x20    /* Button 1 changed if set */
-#define MOVEMENT       0x40    /* Mouse movement detected */
-
-/* Ioctl definitions */
-
-#define MOUSEIOC        ('M'<<8)
-#define MOUSEIOCREAD   (MOUSEIOC|60)
-
-#endif /* !_BEBOX_MOUSE_H_ */
diff -r d87e7161dbee -r 5abf8caea1d4 sys/arch/bebox/include/pc/display.h
--- a/sys/arch/bebox/include/pc/display.h       Sun Aug 07 14:03:15 2011 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,47 +0,0 @@
-/*     $NetBSD: display.h,v 1.1 1997/10/14 06:48:51 sakamoto Exp $     */
-
-/*
- * IBM PC display definitions
- */
-
-/* Color attributes for foreground text */
-
-#define        FG_BLACK                   0
-#define        FG_BLUE                    1
-#define        FG_GREEN                   2
-#define        FG_CYAN                    3
-#define        FG_RED                     4
-#define        FG_MAGENTA                 5
-#define        FG_BROWN                   6
-#define        FG_LIGHTGREY               7
-#define        FG_DARKGREY                8
-#define        FG_LIGHTBLUE               9
-#define        FG_LIGHTGREEN             10
-#define        FG_LIGHTCYAN              11
-#define        FG_LIGHTRED               12
-#define        FG_LIGHTMAGENTA           13
-#define        FG_YELLOW                 14
-#define        FG_WHITE                  15
-#define        FG_BLINK                0x80
-#define        FG_MASK                 0x8f
-
-/* Color attributes for text background */
-
-#define        BG_BLACK                0x00
-#define        BG_BLUE                 0x10
-#define        BG_GREEN                0x20
-#define        BG_CYAN                 0x30
-#define        BG_RED                  0x40
-#define        BG_MAGENTA              0x50
-#define        BG_BROWN                0x60
-#define        BG_LIGHTGREY            0x70
-#define        BG_MASK                 0x70
-
-/* Monochrome attributes for foreground text */
-
-#define        FG_UNDERLINE            0x01
-#define        FG_INTENSE              0x08
-
-/* Monochrome attributes for text background */
-
-#define        BG_INTENSE              0x10
diff -r d87e7161dbee -r 5abf8caea1d4 sys/arch/bebox/include/pccons.h
--- a/sys/arch/bebox/include/pccons.h   Sun Aug 07 14:03:15 2011 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-/*     $NetBSD: pccons.h,v 1.3 2005/12/11 12:17:03 christos Exp $      */
-
-/*
- * pccons.h -- pccons ioctl definitions
- */
-
-#ifndef _PCCONS_H_
-#define _PCCONS_H_
-
-#include <sys/ioctl.h>
-
-#define CONSOLE_X_MODE_ON              _IO('t',121)
-#define CONSOLE_X_MODE_OFF             _IO('t',122)
-#define CONSOLE_X_BELL                 _IOW('t',123,int[2])
-#define CONSOLE_SET_TYPEMATIC_RATE     _IOW('t',124,u_char)
-
-#ifdef _KERNEL
-int    pccnattach(void);
-#endif
-
-#endif /* _PCCONS_H_ */



Home | Main Index | Thread Index | Old Index