blob: 4a23020d327645b5aa0d2aafca2dabc295e11940 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef JSUFILESTREAM_H
#define JSUFILESTREAM_H
#include "JSystem/JSupport/JSURandomInputStream.h"
class JKRFile;
class JSUFileInputStream : public JSURandomInputStream {
public:
// TODO: fix return values
JSUFileInputStream(JKRFile*);
u32 readData(void*, s32);
s32 seekPos(s32, JSUStreamSeekFrom);
s32 getLength() const;
s32 getPosition() const;
private:
/* 0x08 */ JKRFile* mFile;
/* 0x0C */ s32 mPosition;
}; // Size = 0x10
#endif /* JSUFILESTREAM_H */
|