ams_mitm: implement hid mitm

This commit is contained in:
Michael Scire
2019-11-21 12:01:14 -08:00
committed by SciresM
parent 9c68bea16c
commit 5228768841
7 changed files with 196 additions and 8 deletions

View File

@@ -0,0 +1,19 @@
/**
* @file hid_shim.h
* @brief Human Interface Devices Services (hid) IPC wrapper.
* @author SciresM
* @copyright libnx Authors
*/
#pragma once
#include <switch.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Command forwarders. */
Result hidSetSupportedNpadStyleSetFwd(Service* s, u64 process_id, u64 aruid, HidControllerType type);
#ifdef __cplusplus
}
#endif