From eb57307632529ea8f9ef274d675543ccb3f227d0 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Tue, 1 Jun 2004 19:15:53 +0000 Subject: [PATCH] Added missings functions ;-) --- src/include/cdintf.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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); -- 2.37.2