summaryrefslogtreecommitdiffstats
path: root/src/sdl-test.c
diff options
context:
space:
mode:
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;
+}