Skipping some tests for now
[sdlgit/SDL_perl.git] / src / TTF / objects / TTF_Font.xs
CommitLineData
b41abbd6 1#include "EXTERN.h"
2#include "perl.h"
3#include "XSUB.h"
4
5#ifndef aTHX_
6#define aTHX_
7#endif
8
9#include <SDL.h>
10#include <SDL_ttf.h>
11
12MODULE = SDL::TTF_Font PACKAGE = SDL::TTF_Font PREFIX = ttf_font_
13
14=for documentation
15
16SDL_TTF_Font - The opaque holder of a loaded font
17
18=cut
19
20void
21ttf_font_DESTROY(self)
22 TTF_Font *self
23 CODE:
24 TTF_CloseFont(self);