Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
18 lines
302 B
C++
18 lines
302 B
C++
#pragma once
|
|
|
|
#include "Reader.h"
|
|
|
|
class InputStream;
|
|
|
|
class InputStreamReader : public Reader
|
|
{
|
|
private:
|
|
DataInputStream *stream;
|
|
|
|
public:
|
|
InputStreamReader(InputStream *in);
|
|
|
|
virtual void close();
|
|
virtual int read();
|
|
virtual int read(wchar_t cbuf[], unsigned int offset, unsigned int length);
|
|
}; |