]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/cdintf_osx.cpp
New overlay system functions
[virtualjaguar] / src / cdintf_osx.cpp
index 3692e7ec713d87fd753ec1a74531089fd7f9ca23..7df24eae9c698bd24fb3ee779083df5dfced0812 100644 (file)
@@ -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;
+}