diff --git a/btree_standardVFS.cpp b/btree_standardVFS.cpp index 9db223a..d843b48 100644 --- a/btree_standardVFS.cpp +++ b/btree_standardVFS.cpp @@ -37,8 +37,9 @@ } // StandardVFS::fRead bool -StandardVFS::fSeek(uInt32) { - return false; +StandardVFS::fSeek(uInt32 offset) { + int result = fseek(dataFile, offset, SEEK_SET); + return result != EOF ? true : false; } // StandardVFS::fSeek bool