mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #3925 from ogniK5377/hid-SendKeyboardLockKeyEvent
Stub hid:SendKeyboardLockKeyEvent
This commit is contained in:
		
						commit
						5dec81fcbd
					
				| @ -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"} { | ||||
|  | ||||
| @ -130,6 +130,7 @@ private: | ||||
|     void SetPalmaBoostMode(Kernel::HLERequestContext& ctx); | ||||
|     void StopSevenSixAxisSensor(Kernel::HLERequestContext& ctx); | ||||
|     void InitializeSevenSixAxisSensor(Kernel::HLERequestContext& ctx); | ||||
|     void SendKeyboardLockKeyEvent(Kernel::HLERequestContext& ctx); | ||||
| 
 | ||||
|     std::shared_ptr<IAppletResource> applet_resource; | ||||
|     Core::System& system; | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 bunnei
						bunnei