mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-30 22:45:17 -04:00
fs.mitm: Implement basic passthrough framework for input commands.
This commit is contained in:
parent
28d630a23e
commit
c1c211f542
13 changed files with 855 additions and 0 deletions
12
stratosphere/fs_mitm/source/fsmitm_service.cpp
Normal file
12
stratosphere/fs_mitm/source/fsmitm_service.cpp
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include <switch.h>
|
||||
#include "fsmitm_service.hpp"
|
||||
|
||||
Result FsMitMService::dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size) {
|
||||
Result rc = 0xF601;
|
||||
return rc;
|
||||
}
|
||||
|
||||
Result FsMitMService::handle_deferred() {
|
||||
/* This service is never deferrable. */
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue