annotate src/libmodplug-test.c @ 3110:4b72e7cf4f30
shared libraries and cross build for hdf5
author |
John W. Eaton <jwe@octave.org> |
date |
Wed, 26 Dec 2012 16:42:35 -0500 |
parents |
7dbb9f04ee33 |
children |
|
rev |
line source |
2447
|
1 /* |
|
2 * This file is part of MXE. |
|
3 * See index.html for further information. |
|
4 */ |
|
5 |
|
6 #include <modplug.h> |
|
7 |
|
8 int main(int argc, char *argv[]) |
|
9 { |
|
10 (void)argc; |
|
11 (void)argv; |
|
12 |
|
13 ModPlug_Settings settings; |
|
14 ModPlug_GetSettings(&settings); |
|
15 ModPlug_SetSettings(&settings); |
|
16 return 0; |
|
17 } |