view src/libmodplug-test.c @ 3533:4949f2d7d107

bump version to 0.21
author John W. Eaton <jwe@octave.org>
date Mon, 17 Feb 2014 04:27:13 -0500
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;
}