From 67f773ec1d29f7b4761cd307a3ebc78c280d7308 Mon Sep 17 00:00:00 2001 From: John Scipione Date: Mon, 24 Dec 2012 16:31:10 -0500 Subject: [PATCH] Rename header params to match BeBook. No implementation. --- headers/os/media/FileInterface.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/headers/os/media/FileInterface.h b/headers/os/media/FileInterface.h index 67d75a565c..36206b96bd 100644 --- a/headers/os/media/FileInterface.h +++ b/headers/os/media/FileInterface.h @@ -23,16 +23,17 @@ protected: size_t size); virtual status_t GetNextFileFormat(int32* cookie, - media_file_format* _format) = 0; + media_file_format* outFormat) = 0; virtual void DisposeFileFormatCookie(int32 cookie) = 0; - virtual status_t GetDuration(bigtime_t* _time) = 0; + virtual status_t GetDuration(bigtime_t* outDuration) = 0; virtual status_t SniffRef(const entry_ref& file, - char* _mimeType, // 256 bytes - float* _quality) = 0; - virtual status_t SetRef(const entry_ref& file, - bool create, bigtime_t* _time) = 0; - virtual status_t GetRef(entry_ref* _ref, char* _mimeType) = 0; + char* outMimeType, // 256 bytes + float* outQuality) = 0; + virtual status_t SetRef(const entry_ref& file, bool create, + bigtime_t* outDuration) = 0; + virtual status_t GetRef(entry_ref* outRef, + char* outMimeType) = 0; // TODO: Needs a Perform() virtual method!