From: Shamus Hammons Date: Tue, 1 Jun 2004 19:15:53 +0000 (+0000) Subject: Added missings functions ;-) X-Git-Tag: 1.0.7~28 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb57307632529ea8f9ef274d675543ccb3f227d0;p=virtualjaguar Added missings functions ;-) --- diff --git a/src/include/cdintf.h b/src/include/cdintf.h index e69de29..30fc922 100644 --- a/src/include/cdintf.h +++ b/src/include/cdintf.h @@ -0,0 +1,17 @@ +// +// CDINTF.H: OS agnostic CDROM access funcions +// +// by James L. Hammons +// + +#include "types.h" + +bool CDIntfInit(void); +void CDIntfDone(void); +bool CDIntfReadBlock(uint32, uint8 *); +uint32 CDIntfGetNumSessions(void); +void CDIntfSelectDrive(uint32); +uint32 CDIntfGetCurrentDrive(void); +const uint8 * CDIntfGetDriveName(uint32); +uint8 CDIntfGetSessionInfo(uint32, uint32); +uint8 CDIntfGetTrackInfo(uint32, uint32);