]> Shamusworld >> Repos - virtualjaguar/commitdiff
added missing #include (D'oh!)
authorShamus Hammons <jlhamm@acm.org>
Tue, 22 Jun 2004 16:51:51 +0000 (16:51 +0000)
committerShamus Hammons <jlhamm@acm.org>
Tue, 22 Jun 2004 16:51:51 +0000 (16:51 +0000)
src/cdintf_linux.cpp
src/cdintf_osx.cpp

index eeeec30543624a260455e58f8b2df1686aaa815f..b92357912c8555b53f90ec37f774cd21e6f741dc 100644 (file)
@@ -4,13 +4,10 @@
 // by James L. Hammons
 //
 
-//
-// Linux support functions
-//
-
-
+#include "log.h"
 
 //
+// Linux support functions
 // OS specific implementation of OS agnostic functions
 //
 
@@ -52,3 +49,15 @@ 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;
+}
index 3692e7ec713d87fd753ec1a74531089fd7f9ca23..f8413ae9a3abae76262d973536d19df2f728b06d 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
 //
 
@@ -52,3 +49,15 @@ 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;
+}