diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-07-31 13:40:07 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-07-31 13:40:07 +0000 |
commit | d18ce66da98d108f5f166e4cd314b6989abefb96 (patch) | |
tree | 7a4bf356fbdc2520232e6ec68e9faf128f97e9a9 /sys/dev/wscons/wscons_rops.c | |
parent | cb80d106aae3b78c45f5a8b3e460630c6b1b3ef8 (diff) |
text video attributes, tested only on vga, send me E-mail if it breaks something, thx.
Diffstat (limited to 'sys/dev/wscons/wscons_rops.c')
-rw-r--r-- | sys/dev/wscons/wscons_rops.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sys/dev/wscons/wscons_rops.c b/sys/dev/wscons/wscons_rops.c index 24a461cca38..821d7b76523 100644 --- a/sys/dev/wscons/wscons_rops.c +++ b/sys/dev/wscons/wscons_rops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wscons_rops.c,v 1.3 1996/10/30 22:41:55 niklas Exp $ */ +/* $OpenBSD: wscons_rops.c,v 1.4 1997/07/31 13:40:05 kstailey Exp $ */ /* $NetBSD: wscons_rops.c,v 1.1 1996/04/12 02:00:55 cgd Exp $ */ /* @@ -117,7 +117,7 @@ rcons_putstr(id, row, col, str, n) } /* - * Possibly change to white-on-black or black-on-white modes. + * Possibly change entire display to white-on-black or black-on-white modes. */ void rcons_invert(id, inverted) @@ -216,3 +216,11 @@ rcons_eraserows(id, startrow, nrows) rc->rc_raswidth, ny, rc->rc_ras_blank, (struct raster *) 0, 0, 0); } + +void +rcons_setattr(id, val) + void *id; + int val; +{ + /* XXX */ +} |