#include "switch_protocol.h" #include "switch_pro_driver.h" void switch_protocol_init() { switch_pro_init(); } void switch_protocol_set_input(const SwitchInputState& state) { switch_pro_set_input(state); } void switch_protocol_task() { switch_pro_task(); } bool switch_protocol_is_ready() { return switch_pro_is_ready(); } void switch_protocol_set_rumble_callback(SwitchRumbleCallback callback) { switch_pro_set_rumble_callback(callback); }