2 // OS agnostic CDROM interface functions
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.
10 #include "cdintf.h" // Every OS has to implement these
12 // OS dependent implementations
14 #if defined(__GCCWIN32__)
16 #include "cdintf_win32.cpp"
18 #elif defined(__GCCUNIX__)
21 #include "cdintf_osx.cpp"
25 #include "cdintf_linux.cpp"