--- /dev/null
+#include "EXTERN.h"
+#include "perl.h"
+#include "XSUB.h"
+
+#ifndef aTHX_
+#define aTHX_
+#endif
+
+#include <SDL.h>
+
+MODULE = SDL::VideoInfo PACKAGE = SDL::VideoInfo PREFIX = videoinfo_
+
+=for documentation
+
+SDL_VideoInfo -- Video target information
+
+typedef struct{
+ Uint32 hw_available:1;
+ Uint32 wm_available:1;
+ Uint32 blit_hw:1;
+ Uint32 blit_hw_CC:1;
+ Uint32 blit_hw_A:1;
+ Uint32 blit_sw:1;
+ Uint32 blit_sw_CC:1;
+ Uint32 blit_sw_A:1;
+ Uint32 blit_fill:1;
+ Uint32 video_mem;
+ SDL_PixelFormat *vfmt;
+ int current_w;
+ int current_h;
+} SDL_VideoInfo;
+
+
+
+=cut
+