mmlibs/mmfw/Recogniser/src/readers.h
changeset 54 b68f3e90dca1
parent 0 40261b775718
--- a/mmlibs/mmfw/Recogniser/src/readers.h	Thu Sep 02 22:02:55 2010 +0300
+++ b/mmlibs/mmfw/Recogniser/src/readers.h	Fri Sep 17 08:37:57 2010 +0300
@@ -105,6 +105,7 @@
 	// Non-leaving Seek
 	//
 	TInt Seek(TInt aOffset);
+	TInt Seek(TInt64 aOffset);
 	
 private:
 	const TDesC8& iBuffer;		// The buffer that contains the source data.
@@ -163,10 +164,10 @@
 	// Seeks to a new file location and fills the buffer from there.
 	//
 	TInt PhysicallySeekAndRead(TInt aAmount);
-	
+	TInt PhysicallySeekAndRead(TInt64 aOffset);
 private:
 	RFile* iFile;
-	TInt iFilePos;
+	TInt64 iFilePos;
 	TBuf8<KBufSize> iFileBuffer;
 	};