Home  /  Autodocs  /  diskfont.library

NAME

CloseOutlineFont
Release a pointer to an outline font. (V47)

SYNOPSIS

CloseOutlineFont(outlineFont, list)
A0 A1

VOID CloseOutlineFont(struct OutlineFont *, struct List *);

FUNCTION

This function indicates that the font specified is no longer in use. It is used to close a font opened by OpenOutlineFont(), so that fonts that are no longer in use do not consume system resources.

INPUTS

font
a font pointer as returned by OpenOutlineFont().

list
the same pointer to a struct List (or NULL pointer) that was used for the matching OpenOutlineFont() call. If you want to share the list between tasks, you are responsible for using an appropriate locking mechanism, e.g. a Semaphore.

SEE ALSO

OpenOutlineFont()