summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2020-05-11 17:01:50 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2020-05-11 17:01:50 +0200
commitecc8ccc9d32fb0ee9741b748837c0e2b410789e0 (patch)
tree16cb14d8f0ca633a93176ff319f3711dc212eded /src/core/hle/service/hid/hid.cpp
parentMerge pull request #3896 from jroweboy/remove-clang-format-check-from-patreon (diff)
downloadyuzu-ecc8ccc9d32fb0ee9741b748837c0e2b410789e0.tar
yuzu-ecc8ccc9d32fb0ee9741b748837c0e2b410789e0.tar.gz
yuzu-ecc8ccc9d32fb0ee9741b748837c0e2b410789e0.tar.bz2
yuzu-ecc8ccc9d32fb0ee9741b748837c0e2b410789e0.tar.lz
yuzu-ecc8ccc9d32fb0ee9741b748837c0e2b410789e0.tar.xz
yuzu-ecc8ccc9d32fb0ee9741b748837c0e2b410789e0.tar.zst
yuzu-ecc8ccc9d32fb0ee9741b748837c0e2b410789e0.zip
Diffstat (limited to 'src/core/hle/service/hid/hid.cpp')
-rw-r--r--src/core/hle/service/hid/hid.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp
index 5559587e3..c84cb1483 100644
--- a/src/core/hle/service/hid/hid.cpp
+++ b/src/core/hle/service/hid/hid.cpp
@@ -157,7 +157,7 @@ Hid::Hid(Core::System& system) : ServiceFramework("hid"), system(system) {
{11, &Hid::ActivateTouchScreen, "ActivateTouchScreen"},
{21, &Hid::ActivateMouse, "ActivateMouse"},
{31, &Hid::ActivateKeyboard, "ActivateKeyboard"},
- {32, nullptr, "SendKeyboardLockKeyEvent"},
+ {32, &Hid::SendKeyboardLockKeyEvent, "SendKeyboardLockKeyEvent"},
{40, nullptr, "AcquireXpadIdEventHandle"},
{41, nullptr, "ReleaseXpadIdEventHandle"},
{51, &Hid::ActivateXpad, "ActivateXpad"},
@@ -871,6 +871,15 @@ void Hid::InitializeSevenSixAxisSensor(Kernel::HLERequestContext& ctx) {
rb.Push(RESULT_SUCCESS);
}
+void Hid::SendKeyboardLockKeyEvent(Kernel::HLERequestContext& ctx) {
+ IPC::RequestParser rp{ctx};
+ const auto flags{rp.Pop<u32>()};
+ LOG_WARNING(Service_HID, "(STUBBED) called. flags={}", flags);
+
+ IPC::ResponseBuilder rb{ctx, 2};
+ rb.Push(RESULT_SUCCESS);
+}
+
class HidDbg final : public ServiceFramework<HidDbg> {
public:
explicit HidDbg() : ServiceFramework{"hid:dbg"} {