From 9260b705a5ee32c7afd56ee64c305933b667d66f Mon Sep 17 00:00:00 2001 From: drochner Date: Fri, 26 Jun 1998 21:10:52 +0000 Subject: [PATCH] define a "mapping" function which can be used by the emulation module to display non-ASCII characters --- sys/dev/wscons/wsdisplayvar.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/dev/wscons/wsdisplayvar.h b/sys/dev/wscons/wsdisplayvar.h index cce1cf0ec25b..087f6042a715 100644 --- a/sys/dev/wscons/wsdisplayvar.h +++ b/sys/dev/wscons/wsdisplayvar.h @@ -1,4 +1,4 @@ -/* $NetBSD: wsdisplayvar.h,v 1.4 1998/06/20 21:52:50 drochner Exp $ */ +/* $NetBSD: wsdisplayvar.h,v 1.5 1998/06/26 21:10:52 drochner Exp $ */ /* * Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved. @@ -50,6 +50,7 @@ struct device; */ struct wsdisplay_emulops { void (*cursor) __P((void *c, int on, int row, int col)); + unsigned int (*mapchar) __P((void *, int)); void (*putchar) __P((void *c, int row, int col, u_int uc, long attr)); void (*copycols) __P((void *c, int row, int srccol, int dstcol,