You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/sdl_mixer-test.c

19 lines
309 B

/*
* This file is part of MXE. See LICENSE.md for licensing 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);
(void)initted;
Mix_Quit();
return 0;
}