2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
8 #include "diskfont_intern.h"
9 #include <proto/exec.h>
11 /*****************************************************************************
14 #include <proto/diskfont.h>
16 AROS_LH1(VOID
, DisposeFontContents
,
19 AROS_LHA(struct FontContentsHeader
*, fontContentsHeader
, A1
),
22 struct Library
*, DiskfontBase
, 8, Diskfont
)
26 Free a FontContents array obtained from NewFontContents().
30 fontContentsHeader -- Pointer to a struct FontContentsHeader got from
49 5.8.1999 SDuvan implemented
51 *****************************************************************************/
54 AROS_LIBBASE_EXT_DECL(struct Library
*,DiskfontBase
)
58 FreeVec(fontContentsHeader
);
62 } /* DisposeFontContents */