Files
tp/include/JSystem/JSupport/JSUInputStream.h
T
lepelog 80ba3d9fd2 Fix symbol names (#118)
* 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>
2021-03-15 02:12:44 -04:00

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