X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fcdintf.cpp;h=1f0993b482ccbc32dcf5416ac9a8a1b950812963;hb=26044acf8a4fe70772bd6e69afb8b8d20b5a6af5;hp=2f54be5f439d96445843bc374e9873c1fce46ccf;hpb=34eb947551354f437ed67e2f0a3b88e186f47561;p=virtualjaguar diff --git a/src/cdintf.cpp b/src/cdintf.cpp index 2f54be5..1f0993b 100644 --- a/src/cdintf.cpp +++ b/src/cdintf.cpp @@ -1,7 +1,16 @@ // // OS agnostic CDROM interface functions // -// by James L. Hammons +// by James Hammons +// (C) 2010 Underground Software +// +// JLH = James Hammons +// +// Who When What +// --- ---------- ------------------------------------------------------------- +// JLH 01/16/2010 Created this log ;-) +// + // // This now uses the supposedly cross-platform libcdio to do the necessary // low-level CD twiddling we need that libsdl can't do currently. Jury is @@ -81,7 +90,7 @@ void CDIntfDone(void) bool CDIntfReadBlock(uint32 sector, uint8 * buffer) { -#warning !!! FIX !!! CDIntfReadBlock not implemented! +#warning "!!! FIX !!! CDIntfReadBlock not implemented!" // !!! FIX !!! WriteLog("CDINTF: ReadBlock unimplemented!\n"); return false; @@ -89,7 +98,7 @@ bool CDIntfReadBlock(uint32 sector, uint8 * buffer) uint32 CDIntfGetNumSessions(void) { -#warning !!! FIX !!! CDIntfGetNumSessions not implemented! +#warning "!!! FIX !!! CDIntfGetNumSessions not implemented!" // !!! FIX !!! // Still need relevant code here... !!! FIX !!! return 2; @@ -97,14 +106,14 @@ uint32 CDIntfGetNumSessions(void) void CDIntfSelectDrive(uint32 driveNum) { -#warning !!! FIX !!! CDIntfSelectDrive not implemented! +#warning "!!! FIX !!! CDIntfSelectDrive not implemented!" // !!! FIX !!! WriteLog("CDINTF: SelectDrive unimplemented!\n"); } uint32 CDIntfGetCurrentDrive(void) { -#warning !!! FIX !!! CDIntfGetCurrentDrive not implemented! +#warning "!!! FIX !!! CDIntfGetCurrentDrive not implemented!" // !!! FIX !!! WriteLog("CDINTF: GetCurrentDrive unimplemented!\n"); return 0; @@ -112,7 +121,7 @@ uint32 CDIntfGetCurrentDrive(void) const uint8 * CDIntfGetDriveName(uint32 driveNum) { -#warning !!! FIX !!! CDIntfGetDriveName driveNum is currently ignored! +#warning "!!! FIX !!! CDIntfGetDriveName driveNum is currently ignored!" // driveNum is currently ignored... !!! FIX !!! #ifdef HAVE_LIB_CDIO @@ -127,7 +136,7 @@ const uint8 * CDIntfGetDriveName(uint32 driveNum) uint8 CDIntfGetSessionInfo(uint32 session, uint32 offset) { -#warning !!! FIX !!! CDIntfGetSessionInfo not implemented! +#warning "!!! FIX !!! CDIntfGetSessionInfo not implemented!" // !!! FIX !!! WriteLog("CDINTF: GetSessionInfo unimplemented!\n"); return 0xFF; @@ -135,7 +144,7 @@ uint8 CDIntfGetSessionInfo(uint32 session, uint32 offset) uint8 CDIntfGetTrackInfo(uint32 track, uint32 offset) { -#warning !!! FIX !!! CDIntfTrackInfo not implemented! +#warning "!!! FIX !!! CDIntfTrackInfo not implemented!" // !!! FIX !!! WriteLog("CDINTF: GetTrackInfo unimplemented!\n"); return 0xFF;