New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / libs / diskfont / disposefontcontents.c
blobf51ff6dba9b0d7ea4c1c81e019bd3e765d2597da
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
8 #include "diskfont_intern.h"
9 #include <proto/exec.h>
11 /*****************************************************************************
13 NAME */
14 #include <proto/diskfont.h>
16 AROS_LH1(VOID, DisposeFontContents,
18 /* SYNOPSIS */
19 AROS_LHA(struct FontContentsHeader *, fontContentsHeader, A1),
21 /* LOCATION */
22 struct Library *, DiskfontBase, 8, Diskfont)
24 /* FUNCTION
26 Free a FontContents array obtained from NewFontContents().
28 INPUTS
30 fontContentsHeader -- Pointer to a struct FontContentsHeader got from
31 NewFontContents().
33 RESULT
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
43 NewFontContents()
45 INTERNALS
47 HISTORY
49 5.8.1999 SDuvan implemented
51 *****************************************************************************/
53 AROS_LIBFUNC_INIT
54 AROS_LIBBASE_EXT_DECL(struct Library *,DiskfontBase)
56 (void)DiskfontBase;
58 FreeVec(fontContentsHeader);
60 AROS_LIBFUNC_EXIT
62 } /* DisposeFontContents */