From 022ea8444d3a2ff684eadd759289ade3ead1acf9 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Tue, 22 Jun 2004 16:51:51 +0000 Subject: [PATCH] added missing #include (D'oh!) --- src/cdintf_linux.cpp | 19 ++++++++++++++----- src/cdintf_osx.cpp | 19 ++++++++++++++----- 2 files changed, 28 insertions(+), 10 deletions(-) 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; +} -- 2.37.2