view src/sdl_mixer-test.c @ 3593:9a78c7c94ba8

of-*: update of-control=2.6.3, of-io=2.2.1, io-image=2.2.1 * src/build_packages.m: update version numbers of packages. * src/of-control.mk: update version, checksum. * src/of-image.mk: update version, checksum. * src/of-io.mk: update version, checksum.
author John Donoghue <john.donoghue@ieee.org>
date Tue, 29 Apr 2014 15:34:27 -0400
parents 99516e73b368
children
line wrap: on
line source

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