Prefs/ScreenMode: change the way depth is selected
[AROS.git] / workbench / libs / diskfont / disposefontcontents.c
blob8eb64544397d9152c39ef610a44cd49ae5a866c9
1 /*
2 Copyright © 1995-2007, 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
55 (void)DiskfontBase;
57 FreeVec(fontContentsHeader);
59 AROS_LIBFUNC_EXIT
61 } /* DisposeFontContents */