annotate src/libmodplug-test.c @ 3715:cffa8fa688ed

build: update --enable-stable option to reflect that it is the default * configure.ac: change --enable-stable help to --disable-stable
author John Donoghue
date Tue, 23 Sep 2014 07:57:16 -0400
parents 7dbb9f04ee33
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2447
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
1 /*
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
2 * This file is part of MXE.
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
3 * See index.html for further information.
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
4 */
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
5
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
6 #include <modplug.h>
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
7
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
8 int main(int argc, char *argv[])
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
9 {
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
10 (void)argc;
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
11 (void)argv;
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
12
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
13 ModPlug_Settings settings;
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
14 ModPlug_GetSettings(&settings);
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
15 ModPlug_SetSettings(&settings);
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
16 return 0;
7dbb9f04ee33 new package: libmodplug
Nikos Chantziaras <realnc@gmail.com>
parents:
diff changeset
17 }