define a "mapping" function which can be used by the emulation module
to display non-ASCII characters
This commit is contained in:
parent
91d0d98450
commit
9260b705a5
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue