revert between 56095 -> 55830 in arch
[AROS.git] / workbench / libs / freetype2 / closeengine.c
blobee61037596de67b3ba74729da5f15d09c67be50e
1 /*
2 * Based on the code from the ft2.library from MorphOS, the ttf.library by
3 * Richard Griffith and the type1.library by Amish S. Dave
4 */
6 #include <aros/libcall.h>
7 #include <diskfont/glyph.h>
9 #include "ftglyphengine.h"
11 //#define DEBUG 1
12 #include <aros/debug.h>
14 #include LC_LIBDEFS_FILE
16 AROS_LH1(void, CloseEngine,
17 AROS_LHA(struct GlyphEngine *, ge, A0),
18 LIBBASETYPEPTR, LIBBASE, 6, FreeType2
21 AROS_LIBFUNC_INIT
23 D(bug("LIB_CloseEngine engine 0x%lx\n", ge));
25 FreeGE((FT_GlyphEngine *)ge);
27 return;
29 AROS_LIBFUNC_EXIT