Moved old SDL::Video test to smpeg test
[sdlgit/SDL_perl.git] / src / Core / Video.xs
CommitLineData
70fd0f8d 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
11MODULE = SDL::Video PACKAGE = SDL::Video PREFIX = video_
12
13=for documentation
14
15The Following are XS bindings to the Video category in the SDL API v2.1.13
16
17Describe on the SDL API site.
18
19See: L<http://www.libsdl.org/cgi/docwiki.cgi/SDL_API#head-813f033ec44914f267f32195aba7d9aff8c410c0>
20
21=cut
22
23SDL_Surface *
24GetVideoSurface ()
25 CODE:
26 RETVAL = SDL_GetVideoSurface();
27 OUTPUT:
28 RETVAL
29
30