mxe/src/sdl_mixer-test.c

20 lines
310 B
C
Raw Normal View History

/*
* This file is part of MXE.
2012-03-29 11:14:15 +01:00
* See index.html for further information.
*/
#include <SDL_mixer.h>
2010-05-09 22:21:01 +01:00
int main(int argc, char *argv[])
{
int initted;
(void)argc;
(void)argv;
initted = Mix_Init(MIX_INIT_FLAC | MIX_INIT_OGG | MIX_INIT_MOD);
(void)initted;
Mix_Quit();
return 0;
}