view src/libmodplug-test.c @ 4413:d9eba31bd16b

of-windows: add patch so compiled with octave 4.3.0+ * src/of-windows-1-fixes.patch: new file * dist-files.mk: add of-windows-1-fixes.patch * src/of-windows.mk: call autogen on modded configure file
author John D
date Tue, 11 Jul 2017 15:07:23 -0400
parents 7dbb9f04ee33
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <modplug.h>

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

    ModPlug_Settings settings;
    ModPlug_GetSettings(&settings);
    ModPlug_SetSettings(&settings);
    return 0;
}