summaryrefslogtreecommitdiffstats
path: root/src/libmodplug-test.c
blob: 5ce15859c0e87f2e176346b92fcc264ba7fd7458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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;
}