COMMON: Increase Stream pos, seek, size from int32 to int64
This commit is contained in:
parent
956f53fd22
commit
005561d305
104 changed files with 291 additions and 276 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue