X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fcdintf_osx.cpp;h=7df24eae9c698bd24fb3ee779083df5dfced0812;hb=475a0ffd020bca8527cff077d27a90bd6e58808b;hp=3692e7ec713d87fd753ec1a74531089fd7f9ca23;hpb=53d1b77295cdb028ef192cb6e5cd4cf60b3d6813;p=virtualjaguar diff --git a/src/cdintf_osx.cpp b/src/cdintf_osx.cpp index 3692e7e..7df24ea 100644 --- a/src/cdintf_osx.cpp +++ b/src/cdintf_osx.cpp @@ -4,13 +4,10 @@ // by James L. Hammons & ? // -// -// OS X support functions -// - - +#include "log.h" // +// OS X support functions // OS specific implementation of OS agnostic functions // @@ -47,8 +44,20 @@ uint32 CDIntfGetCurrentDrive(void) return 0; } -uint8 * CDIntfGetDriveName(uint32) +const uint8 * CDIntfGetDriveName(uint32) { WriteLog("CDINTF: GetDriveName unimplemented!\n"); return NULL; } + +uint8 CDIntfGetSessionInfo(uint32 session, uint32 offset) +{ + WriteLog("CDINTF: GetSessionInfo unimplemented!\n"); + return 0xFF; +} + +uint8 CDIntfGetTrackInfo(uint32 track, uint32 offset) +{ + WriteLog("CDINTF: GetTrackInfo unimplemented!\n"); + return 0xFF; +}