|
|
@ -185,6 +185,7 @@ public: |
|
|
{66, &Hid::StartSixAxisSensor, "StartSixAxisSensor"}, |
|
|
{66, &Hid::StartSixAxisSensor, "StartSixAxisSensor"}, |
|
|
{79, &Hid::SetGyroscopeZeroDriftMode, "SetGyroscopeZeroDriftMode"}, |
|
|
{79, &Hid::SetGyroscopeZeroDriftMode, "SetGyroscopeZeroDriftMode"}, |
|
|
{100, &Hid::SetSupportedNpadStyleSet, "SetSupportedNpadStyleSet"}, |
|
|
{100, &Hid::SetSupportedNpadStyleSet, "SetSupportedNpadStyleSet"}, |
|
|
|
|
|
{101, &Hid::GetSupportedNpadStyleSet, "GetSupportedNpadStyleSet"}, |
|
|
{102, &Hid::SetSupportedNpadIdType, "SetSupportedNpadIdType"}, |
|
|
{102, &Hid::SetSupportedNpadIdType, "SetSupportedNpadIdType"}, |
|
|
{103, &Hid::ActivateNpad, "ActivateNpad"}, |
|
|
{103, &Hid::ActivateNpad, "ActivateNpad"}, |
|
|
{106, &Hid::AcquireNpadStyleSetUpdateEventHandle, |
|
|
{106, &Hid::AcquireNpadStyleSetUpdateEventHandle, |
|
|
@ -265,6 +266,13 @@ private: |
|
|
LOG_WARNING(Service_HID, "(STUBBED) called"); |
|
|
LOG_WARNING(Service_HID, "(STUBBED) called"); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void GetSupportedNpadStyleSet(Kernel::HLERequestContext& ctx) { |
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3}; |
|
|
|
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|
|
|
rb.Push<u32>(0); |
|
|
|
|
|
LOG_WARNING(Service_HID, "(STUBBED) called"); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
void SetSupportedNpadIdType(Kernel::HLERequestContext& ctx) { |
|
|
void SetSupportedNpadIdType(Kernel::HLERequestContext& ctx) { |
|
|
IPC::ResponseBuilder rb{ctx, 2}; |
|
|
IPC::ResponseBuilder rb{ctx, 2}; |
|
|
rb.Push(RESULT_SUCCESS); |
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|