diff options
| author | Narr the Reg <juangerman-13@hotmail.com> | 2023-12-05 18:39:18 -0600 |
|---|---|---|
| committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-12-06 20:24:04 -0600 |
| commit | e445ef9d607d04dab185be55b1395007a40c3b81 (patch) | |
| tree | 663039ca69e79c19ad35cd188f31b3135a790963 /src/core/hle/service/hid/errors.h | |
| parent | 167efb2d2bc3546fa9835ce1c20ece3ec3aa2c17 (diff) | |
service: hid: Introduce proper AppletResource emulation
Diffstat (limited to 'src/core/hle/service/hid/errors.h')
| -rw-r--r-- | src/core/hle/service/hid/errors.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/errors.h b/src/core/hle/service/hid/errors.h index 9585bdaf0..f00cb831f 100644 --- a/src/core/hle/service/hid/errors.h +++ b/src/core/hle/service/hid/errors.h @@ -19,6 +19,11 @@ constexpr Result NpadIsSameType{ErrorModule::HID, 602}; constexpr Result InvalidNpadId{ErrorModule::HID, 709}; constexpr Result NpadNotConnected{ErrorModule::HID, 710}; constexpr Result InvalidArraySize{ErrorModule::HID, 715}; + +constexpr Result ResultAruidNoAvailableEntries{ErrorModule::HID, 1044}; +constexpr Result ResultAruidAlreadyRegistered{ErrorModule::HID, 1046}; +constexpr Result ResultAruidNotRegistered{ErrorModule::HID, 1047}; + constexpr Result InvalidPalmaHandle{ErrorModule::HID, 3302}; } // namespace Service::HID |
