From c070783c4b88e417926adbcf4c548b2de655ccad Mon Sep 17 00:00:00 2001 From: Søren Schmidt Date: Fri, 18 Oct 1996 18:51:37 +0000 Subject: Changed mouse functionality a bit, now the pointer disappears if there is keyboard input. The mousepointer is shown again immediately if moved. Also a function pointer used to install a userwritten extra ioctl handler (sc_user_ioctl). This way its is possible to install user defined videomodes etc etc. No further changes should be in the kernel. --- sys/dev/syscons/syscons.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/dev/syscons/syscons.h') diff --git a/sys/dev/syscons/syscons.h b/sys/dev/syscons/syscons.h index a0df98dfef683..100200f7ed093 100644 --- a/sys/dev/syscons/syscons.h +++ b/sys/dev/syscons/syscons.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: syscons.h,v 1.20 1996/09/01 18:16:06 sos Exp $ + * $Id: syscons.h,v 1.21 1996/09/30 23:00:58 sos Exp $ */ #ifndef _I386_ISA_SYSCONS_H_ @@ -63,6 +63,7 @@ #define MOUSE_ENABLED 0x00400 #define MOUSE_MOVED 0x00800 #define MOUSE_CUTTING 0x01000 +#define MOUSE_VISIBLE 0x02000 /* configuration flags */ #define VISUAL_BELL 0x00001 @@ -185,9 +186,10 @@ typedef struct default_attr { int rev_color; /* reverse hardware color */ } default_attr; -void load_palette(void); +/* misc prototypes used by different syscons related LKM's */ void set_border(u_char color); void set_mode(scr_stat *scp); void copy_font(int operation, int font_type, char* font_image); +void load_palette(void); #endif /* !_I386_ISA_SYSCONS_H_ */ -- cgit v1.3