summaryrefslogtreecommitdiffstats
path: root/src/sdl-test.c
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2010-01-22 02:53:37 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2010-01-22 02:53:37 (GMT)
commit045a091b196bd5457ddb78a5bdf33606bd662608 (patch)
treeb01a470959a73100377d66681119e458577c7f4d /src/sdl-test.c
parentc92062f14bc494cacb664086bd34f43023258993 (diff)
downloadmxe-045a091b196bd5457ddb78a5bdf33606bd662608.zip
mxe-045a091b196bd5457ddb78a5bdf33606bd662608.tar.gz
mxe-045a091b196bd5457ddb78a5bdf33606bd662608.tar.bz2
test program for package sdl
Diffstat (limited to 'src/sdl-test.c')
-rw-r--r--src/sdl-test.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/sdl-test.c b/src/sdl-test.c
new file mode 100644
index 0000000..2e205e5
--- /dev/null
+++ b/src/sdl-test.c
@@ -0,0 +1,19 @@
+/* This file is part of mingw-cross-env. */
+/* See doc/index.html or doc/README for further information. */
+
+#include <SDL.h>
+
+int main(int argc, char* argv[])
+{
+ SDL_Surface *screen;
+
+ (void)argc;
+ (void)argv;
+
+ if (SDL_Init(SDL_INIT_EVERYTHING) < 0) return 1;
+
+ screen = SDL_SetVideoMode(640, 480, 32, SDL_HWSURFACE);
+
+ SDL_Quit();
+ return 0;
+}