]> Shamusworld >> Repos - virtualjaguar/blob - src/cdintf.cpp
Minor cleanup
[virtualjaguar] / src / cdintf.cpp
1 //
2 // OS agnostic CDROM interface functions
3 //
4 // by James L. Hammons
5 //
6 // This file is basically a shell to keep the front-end clean and also pull in the
7 // appropriate back-end code depending on which target is being compiled for.
8 //
9
10 #include "cdintf.h"                                                                     // Every OS has to implement these
11
12 // OS dependent implementations
13
14 #if defined(__GCCWIN32__)
15
16 #include "cdintf_win32.cpp"
17
18 #elif defined(__GCCUNIX__)
19         #if defined(_OSX_)
20
21 #include "cdintf_osx.cpp"
22
23         #else
24
25 #include "cdintf_linux.cpp"
26
27         #endif
28 #endif