diff options
author | 2002-08-12 02:31:01 +0000 | |
---|---|---|
committer | 2002-08-12 02:31:01 +0000 | |
commit | a67978447e56f665cb25f9f180e22553fe28c54d (patch) | |
tree | 421eb9909941d41ef5982eb0786a5ddd376c6f67 /sys/dev/rasops/rasops.h | |
parent | Add support for REL type relocations, all currently supported arch (diff) | |
download | wireguard-openbsd-a67978447e56f665cb25f9f180e22553fe28c54d.tar.xz wireguard-openbsd-a67978447e56f665cb25f9f180e22553fe28c54d.zip |
Add a callback routine for when the cursor position is updated (this allows
for updating prom cursor locations).
Diffstat (limited to 'sys/dev/rasops/rasops.h')
-rw-r--r-- | sys/dev/rasops/rasops.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/rasops/rasops.h b/sys/dev/rasops/rasops.h index 847f3d5f854..825d65bd4e0 100644 --- a/sys/dev/rasops/rasops.h +++ b/sys/dev/rasops/rasops.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops.h,v 1.4 2002/07/28 01:30:08 miod Exp $ */ +/* $OpenBSD: rasops.h,v 1.5 2002/08/12 02:31:01 jason Exp $ */ /* $NetBSD: rasops.h,v 1.13 2000/06/13 13:36:54 ad Exp $ */ /*- @@ -109,6 +109,7 @@ struct rasops_info { /* Callbacks so we can share some code */ void (*ri_do_cursor)(struct rasops_info *); + void (*ri_updatecursor)(struct rasops_info *); }; #define DELTA(p, d, cast) ((p) = (cast)((caddr_t)(p) + (d))) |