diff options
author | Thomas Graichen <graichen@cvs.openbsd.org> | 1996-12-22 15:19:07 +0000 |
---|---|---|
committer | Thomas Graichen <graichen@cvs.openbsd.org> | 1996-12-22 15:19:07 +0000 |
commit | ca1c7fedd990e6b1e7244233df5a6a638f0e4e31 (patch) | |
tree | 20016b11dce3c72001f0e250c8f1a714ed64e546 /sys/arch/pmax/dev/fbreg.h | |
parent | de4c3561677938c64d13b1e5112686a88b0b47fe (diff) |
update the pmax stuff to NetBSD 961107 - this version i got somehow
compiled on my decstation 2100 (PLUTO) - but it will not fully work
out of the box - but i want to bring it into the tree because i get
my own pmax on 961228 - so that i have a good startpoint then :-)
all the OpenBSD changes to the pmax tree will follow in the next commit
Diffstat (limited to 'sys/arch/pmax/dev/fbreg.h')
-rw-r--r-- | sys/arch/pmax/dev/fbreg.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/sys/arch/pmax/dev/fbreg.h b/sys/arch/pmax/dev/fbreg.h index 3d60490f464..78ac957580d 100644 --- a/sys/arch/pmax/dev/fbreg.h +++ b/sys/arch/pmax/dev/fbreg.h @@ -1,4 +1,4 @@ -/* $NetBSD: fbreg.h,v 1.5 1995/09/12 07:51:35 jonathan Exp $ */ +/* $NetBSD: fbreg.h,v 1.6 1996/09/21 03:25:20 jonathan Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -49,9 +49,9 @@ struct fbuaccess { }; struct pmax_fbtty { - /*int initialized; /* Set up yet? */ int row, col; /* Screen pos for glass tty */ - void (*KBDPutc)(); /* Send char to keyboard func */ + void (*KBDPutc) __P ((dev_t dev, int c)); + /* Send char to keyboard func */ dev_t kbddev; /* Device for KBDPutc */ }; @@ -76,9 +76,7 @@ extern void fbMouseButtons __P((MouseReport *, struct fbinfo *)); extern void fbScroll __P((struct fbinfo *)); extern void fbPutc __P((dev_t, int)); extern void fbBlitc __P((int, struct fbinfo *)); -extern int kbdMapChar __P((int)); -extern void KBDReset __P((dev_t, void (*)(dev_t, int))); -extern void MouseInit __P((dev_t, void (*)(dev_t, int), int (*)(dev_t))); -extern int KBDGetc __P((void)); extern int tb_kbdmouseconfig __P((struct fbinfo *fi)); extern int fbmmap_fb __P((struct fbinfo *, dev_t, caddr_t, struct proc *)); + +extern void init_pmaxfbu __P((struct fbinfo *fi)); |