2018-06-10 02:33:22 +01:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
|
|
|
#include <stratosphere/iserviceobject.hpp>
|
2018-06-10 08:17:00 +01:00
|
|
|
#include "imitmserviceobject.hpp"
|
2018-06-10 02:33:22 +01:00
|
|
|
|
2018-06-10 08:17:00 +01:00
|
|
|
class FsMitMService : public IMitMServiceObject {
|
2018-06-10 02:33:22 +01:00
|
|
|
public:
|
|
|
|
virtual Result dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size);
|
2018-06-10 08:17:00 +01:00
|
|
|
virtual Result postprocess(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size);
|
2018-06-10 02:33:22 +01:00
|
|
|
virtual Result handle_deferred();
|
|
|
|
};
|