19 lines
358 B
C
Raw Normal View History

2019-11-21 12:01:14 -08:00
/**
* @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. */
2020-12-02 02:34:28 -08:00
Result hidSetSupportedNpadStyleSetFwd(Service* s, u64 process_id, u64 aruid, u32 style_set);
2019-11-21 12:01:14 -08:00
#ifdef __cplusplus
}
#endif