view src/libmodplug-test.c @ 6332:b5c1bd9c27ac

* src/sqlite.mk: update to 3390200
author John Donoghue <john.donoghue@ieee.org>
date Fri, 22 Jul 2022 08:06:40 -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;
}