diff src/sdl-test.c @ 657:b1d03b91eb1e

test program for package sdl
author Volker Grabsch <vog@notjusthosting.com>
date Fri, 22 Jan 2010 03:53:37 +0100
parents
children 29f1ba4559ae
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/sdl-test.c	Fri Jan 22 03:53:37 2010 +0100
@@ -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;
+}