]> Shamusworld >> Repos - virtualjaguar/blob - src/include/cdintf.h
Added missings functions ;-)
[virtualjaguar] / src / include / cdintf.h
1 //
2 // CDINTF.H: OS agnostic CDROM access funcions
3 //
4 // by James L. Hammons
5 //
6
7 #include "types.h"
8
9 bool CDIntfInit(void);
10 void CDIntfDone(void);
11 bool CDIntfReadBlock(uint32, uint8 *);
12 uint32 CDIntfGetNumSessions(void);
13 void CDIntfSelectDrive(uint32);
14 uint32 CDIntfGetCurrentDrive(void);
15 const uint8 * CDIntfGetDriveName(uint32);
16 uint8 CDIntfGetSessionInfo(uint32, uint32);
17 uint8 CDIntfGetTrackInfo(uint32, uint32);