COMMON: Increase Stream pos, seek, size from int32 to int64

This commit is contained in:
Paul Gilbert 2021-07-03 20:30:41 -07:00
parent 956f53fd22
commit 005561d305
104 changed files with 291 additions and 276 deletions

View file

@ -49,11 +49,11 @@ public:
virtual uint32 read(void *dataPtr, uint32 dataSize);
virtual int32 pos() const { return _pos; }
virtual int64 pos() const { return _pos; }
virtual int32 size() const { return _len; }
virtual int64 size() const { return _len; }
virtual bool seek(int32 offset, int whence = SEEK_SET);
virtual bool seek(int64 offset, int whence = SEEK_SET);
private:
void close();