mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 23:01:23 -04:00
04354aadb9
* before __register_global_object * JKRThread::sThreadList, JKRHeap::sSystemHeap, etc. * cleanup and started on JKRDvdArchive * before changing JKRCompression * more JKRDvdArchive, abs, and memset * fixed JKRArchive::setExpandSize split * JKRArchive::sCurrentDirID, JKRDvdFile::sDvdList, and matching JKRDvdFile constructors * problems * merge fixes and formatting * updated clang version in clang-format-all to version 10 * Added OSPhysicalToCached and struct for global memory * remove useless __attribute__ * changed from defines and macros to const variable and function * changed FLAG_HAS to FLAG_ON * JKRAram, linking problems * fix JKRAram * remove nonmatching stuff * renamed static data * more static class members * JKRAramStream OK * formatting Co-authored-by: Julgodis <> Co-authored-by: Pheenoh <pheenoh@gmail.com>
17 lines
353 B
C++
17 lines
353 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
|