Catch up to changes in prototype for a few functions, which changed some

"char*" parameters to "const char*".
This commit is contained in:
he 2005-06-05 15:36:47 +00:00
parent 627c254473
commit 34094b7804
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: wsfont.9,v 1.11 2003/05/03 23:20:15 gmcgarry Exp $
.\" $NetBSD: wsfont.9,v 1.12 2005/06/05 15:36:47 he Exp $
.\"
.\" Copyright (c) 2001 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -56,17 +56,17 @@
.Ft void
.Fn wsfont_init "void"
.Ft int
.Fn wsfont_matches "struct wsdisplay_font *font" "char *name" \
.Fn wsfont_matches "struct wsdisplay_font *font" "const char *name" \
"int width" "int height" "int stride"
.Ft int
.Fn wsfont_find "char *name" "int width" "int height" "int stride" \
.Fn wsfont_find "const char *name" "int width" "int height" "int stride" \
"int bitorder" "int byteorder"
.Ft int
.Fn wsfont_add "struct wsdisplay_font *font" "int copy"
.Ft int
.Fn wsfont_remove "int cookie"
.Ft void
.Fn wsfont_enum "void (*callback)(char *, int, int, int)"
.Fn wsfont_enum "void (*callback)(const char *, int, int, int)"
.Ft int
.Fn wsfont_lock "int cookie" "struct wsdisplay_font **ptr"
.Ft int