Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 453 Bytes

mdreg.c

File metadata and controls

31 lines (18 loc) · 453 Bytes
 
Oct 21, 1999
Oct 21, 1999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
Name: MDREG.C
Description:
A single routine for registering all drivers in MikMod for the current
platform.
Portability:
DOS, WIN95, OS2, SunOS, Solaris,
Linux, HPUX, AIX, SGI, Alpha
Anything not listed above is assumed to not be supported by this procedure!
All Others: n
- all compilers!
*/
#include "mikmod.h"
void MikMod_RegisterAllDrivers(void)
{
MikMod_RegisterDriver(drv_sdl);
MikMod_RegisterDriver(drv_nos);
}