diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-06-29 10:01:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 10:01:19 -0400 |
commit | 4c705db73edfa3c7210eb5821b3f4e5324d642d1 (patch) | |
tree | 470116d2d52b3a74ad0cd761304f0f65386af708 /src/common/input.h | |
parent | 7de778ad39c761eddf8a40094dae61aa125b5c38 (diff) | |
parent | ac755476cdaa8bace9c86183125d34dbe4c8cee9 (diff) |
Merge pull request #10937 from german77/ring
input_common: Remove duplicated enum and fix ring detection
Diffstat (limited to 'src/common/input.h')
-rw-r--r-- | src/common/input.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/input.h b/src/common/input.h index ea30770ae..2c4ccea22 100644 --- a/src/common/input.h +++ b/src/common/input.h @@ -75,8 +75,10 @@ enum class DriverResult { ErrorWritingData, NoDeviceDetected, InvalidHandle, + InvalidParameters, NotSupported, Disabled, + Delayed, Unknown, }; |