fs.mitm: Add HANS-style redirection for System Data Archives.

This commit is contained in:
Michael Scire
2018-06-10 11:11:05 -06:00
parent ceb93867b4
commit 5c80016c81
13 changed files with 698 additions and 26 deletions

View File

@@ -4,6 +4,12 @@
#include <stratosphere.hpp>
class IMitMServiceObject : public IServiceObject {
protected:
Service *forward_service;
public:
IMitMServiceObject(Service *s) : forward_service(s) {
}
protected:
virtual ~IMitMServiceObject() { }
virtual Result dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size) = 0;