mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 15:21:08 -04:00
80ba3d9fd2
* checkpoint * checkpoint * rename f_pc * checkpoint * small symbol rename and fix some fpc symbols * remove unneeded entries from ldscript * simplify ok check, update docker container Co-authored-by: Pheenoh <pheenoh@gmail.com>
17 lines
331 B
C++
17 lines
331 B
C++
#ifndef JSUINPUTSTREAM_H_
|
|
#define JSUINPUTSTREAM_H_
|
|
|
|
#include "JSystem/JSupport/JSUIosBase.h"
|
|
#include "dolphin/types.h"
|
|
|
|
class JSUInputStream : public JSUIosBase {
|
|
public:
|
|
JSUInputStream();
|
|
virtual ~JSUInputStream();
|
|
|
|
/* vt[3] */ virtual s32 getAvailable() const = 0;
|
|
/* vt[4] */ virtual s32 skip(s32);
|
|
};
|
|
|
|
#endif
|