view src/libmikmod-test.c @ 4434:c38f5511f8a5

ffmpeg: update to 3.3.2 * src/ffmpeg.mk: update version, checksum, remove --enable-memalign-hack option
author John D
date Mon, 24 Jul 2017 11:36:17 -0400
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See 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;
}