summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid_system_server.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-01-07 03:51:29 +0100
committerGitHub <noreply@github.com>2024-01-07 03:51:29 +0100
commitb71840bbd2e88a88852cad806f600e59e01d70c9 (patch)
tree99e0fb71e9e9fdc0b9a2a6bf2354ee0b04d23d00 /src/core/hle/service/hid/hid_system_server.h
parentMerge pull request #12593 from german77/pending-delete (diff)
parentservice: hid: Add functions needed by Qlaunch (diff)
downloadyuzu-b71840bbd2e88a88852cad806f600e59e01d70c9.tar
yuzu-b71840bbd2e88a88852cad806f600e59e01d70c9.tar.gz
yuzu-b71840bbd2e88a88852cad806f600e59e01d70c9.tar.bz2
yuzu-b71840bbd2e88a88852cad806f600e59e01d70c9.tar.lz
yuzu-b71840bbd2e88a88852cad806f600e59e01d70c9.tar.xz
yuzu-b71840bbd2e88a88852cad806f600e59e01d70c9.tar.zst
yuzu-b71840bbd2e88a88852cad806f600e59e01d70c9.zip
Diffstat (limited to 'src/core/hle/service/hid/hid_system_server.h')
-rw-r--r--src/core/hle/service/hid/hid_system_server.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/hid_system_server.h b/src/core/hle/service/hid/hid_system_server.h
index 1e623dfc2..f467e2aa8 100644
--- a/src/core/hle/service/hid/hid_system_server.h
+++ b/src/core/hle/service/hid/hid_system_server.h
@@ -44,6 +44,7 @@ private:
void EnableAppletToGetSixAxisSensor(HLERequestContext& ctx);
void EnableAppletToGetPadInput(HLERequestContext& ctx);
void EnableAppletToGetTouchScreen(HLERequestContext& ctx);
+ void IsJoyConAttachedOnAllRail(HLERequestContext& ctx);
void AcquireConnectionTriggerTimeoutEvent(HLERequestContext& ctx);
void AcquireDeviceRegisteredEventForControllerSupport(HLERequestContext& ctx);
void GetRegisteredDevices(HLERequestContext& ctx);
@@ -53,8 +54,13 @@ private:
void IsUsbFullKeyControllerEnabled(HLERequestContext& ctx);
void IsHandheldButtonPressedOnConsoleMode(HLERequestContext& ctx);
void InitializeFirmwareUpdate(HLERequestContext& ctx);
+ void CheckFirmwareUpdateRequired(HLERequestContext& ctx);
+ void SetFirmwareHotfixUpdateSkipEnabled(HLERequestContext& ctx);
+ void InitializeUsbFirmwareUpdate(HLERequestContext& ctx);
+ void FinalizeUsbFirmwareUpdate(HLERequestContext& ctx);
void InitializeUsbFirmwareUpdateWithoutMemory(HLERequestContext& ctx);
void GetTouchScreenDefaultConfiguration(HLERequestContext& ctx);
+ void IsUsingCustomButtonConfig(HLERequestContext& ctx);
std::shared_ptr<ResourceManager> GetResourceManager();