From: Shamus Hammons Date: Tue, 22 Jun 2004 16:51:51 +0000 (+0000) Subject: added missing #include (D'oh!) X-Git-Tag: 1.0.7~10 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=022ea8444d3a2ff684eadd759289ade3ead1acf9;p=virtualjaguar added missing #include (D'oh!) --- diff --git a/src/cdintf_linux.cpp b/src/cdintf_linux.cpp index eeeec30..b923579 100644 --- a/src/cdintf_linux.cpp +++ b/src/cdintf_linux.cpp @@ -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; +} diff --git a/src/cdintf_osx.cpp b/src/cdintf_osx.cpp index 3692e7e..f8413ae 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 // @@ -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; +}