view src/libmikmod-test.c @ 2108:b7f9bc0ecbbd

package vtk: disable gui components in native build
author Tony Theodore <tonyt@logyst.com>
date Sat, 19 Nov 2011 16:52:13 +1100
parents b445aadc70d1
children f653602a0500
line wrap: on
line source

/* This file is part of mingw-cross-env.       */
/* See doc/index.html for further information. */

#include <mikmod.h>

int main(int argc, char *argv[])
{
    (void)argc;
    (void)argv;

    MikMod_RegisterAllDrivers();
    MikMod_Init("");

    MikMod_Exit();
    return 0;
}