summaryrefslogtreecommitdiffstats
path: root/src/sdl_mixer-test.c
blob: 7972eb193a2735895aa1b995bc9bcab911176ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}