diff options
| author | ad <ad@NetBSD.org> | 1999-12-15 15:27:57 +0000 |
|---|---|---|
| committer | ad <ad@NetBSD.org> | 1999-12-15 15:27:57 +0000 |
| commit | 9bfaff072d5dc7686a034590f1d42aa7f2ff451e (patch) | |
| tree | d6471dba16891682444b4b8ae0bc457655d1c7a0 /sys/dev | |
| parent | f607dfe4dd6ffa42173b6493b2fd1e33888bc4f4 (diff) | |
Now I remember. Add a new flag, WSFONT_RDONLY that indicates the font
to be added to the table should not be modified; i.e. if modifications
are needed, a copy should be made.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/wsfont/wsfont.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/wsfont/wsfont.h b/sys/dev/wsfont/wsfont.h index c7e0674a3c7..82ae2bbab33 100644 --- a/sys/dev/wsfont/wsfont.h +++ b/sys/dev/wsfont/wsfont.h @@ -1,4 +1,4 @@ -/* $NetBSD: wsfont.h,v 1.8 1999/12/14 22:35:17 ad Exp $ */ +/* $NetBSD: wsfont.h,v 1.9 1999/12/15 15:27:57 ad Exp $ */ /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -71,6 +71,7 @@ struct wsdisplay_font; /* For wsfont_add() */ #define WSFONT_BUILTIN (0x01) #define WSFONT_STATIC (0x02) +#define WSFONT_RDONLY (0x04) /* wsfont.c */ void wsfont_init __P((void)); |
