annotate src/libmikmod-test.c @ 2333:f653602a0500

Rebrand to new project name MXE
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 28 Mar 2012 15:46:58 +0200
parents b445aadc70d1
children 8a6c466753e2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 1313
diff changeset
1 /* This file is part of MXE. */
1313
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
2 /* See doc/index.html for further information. */
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 #include <mikmod.h>
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
6 int main(int argc, char *argv[])
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
7 {
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 (void)argc;
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
9 (void)argv;
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11 MikMod_RegisterAllDrivers();
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 MikMod_Init("");
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 MikMod_Exit();
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 return 0;
b445aadc70d1 add test program for package libmikmod
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 }