diff options
author | 2006-11-29 19:08:19 +0000 | |
---|---|---|
committer | 2006-11-29 19:08:19 +0000 | |
commit | a31602381b164e46427917bf9f2a8c1ee13f45d2 (patch) | |
tree | 7153aee065223483a4a3a94738823f3fc6f195c7 /sys/dev/rasops/rasops.h | |
parent | Limit the number of openings to 1 for now, there're still bugs. (diff) | |
download | wireguard-openbsd-a31602381b164e46427917bf9f2a8c1ee13f45d2.tar.xz wireguard-openbsd-a31602381b164e46427917bf9f2a8c1ee13f45d2.zip |
Add an unpack_attr function to struct wsdisplay_emulops, to match the
existing alloc_attr function. This allows rasops_unpack_attr to be kept
private to rasops, yet available to the screen drivers.
Diffstat (limited to 'sys/dev/rasops/rasops.h')
-rw-r--r-- | sys/dev/rasops/rasops.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/rasops/rasops.h b/sys/dev/rasops/rasops.h index a26db058326..35fc997b44c 100644 --- a/sys/dev/rasops/rasops.h +++ b/sys/dev/rasops/rasops.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops.h,v 1.7 2005/09/15 20:23:10 miod Exp $ */ +/* $OpenBSD: rasops.h,v 1.8 2006/11/29 19:08:22 miod Exp $ */ /* $NetBSD: rasops.h,v 1.13 2000/06/13 13:36:54 ad Exp $ */ /*- @@ -152,7 +152,6 @@ void rasops32_init(struct rasops_info *); /* rasops.c */ int rasops_init(struct rasops_info *, int, int); int rasops_reconfig(struct rasops_info *, int, int); -void rasops_unpack_attr(long, int *, int *, int *); void rasops_eraserows(void *, int, int, long); void rasops_erasecols(void *, int, int, int, long); |