summaryrefslogtreecommitdiffstats
path: root/src/sdl_mixer-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sdl_mixer-test.c')
-rw-r--r--src/sdl_mixer-test.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/sdl_mixer-test.c b/src/sdl_mixer-test.c
new file mode 100644
index 0000000..7972eb1
--- /dev/null
+++ b/src/sdl_mixer-test.c
@@ -0,0 +1,16 @@
+/* This file is part of mingw-cross-env. */
+/* See doc/index.html for further information. */
+
+#include <SDL_mixer.h>
+
+int main(int argc, char* argv[])
+{
+ int initted;
+
+ (void)argc;
+ (void)argv;
+
+ initted = Mix_Init(MIX_INIT_FLAC | MIX_INIT_OGG | MIX_INIT_MOD);
+ Mix_Quit();
+ return 0;
+}