diff options
| author | 2018-05-30 20:09:21 +0200 | |
|---|---|---|
| committer | 2018-05-30 14:09:21 -0400 | |
| commit | 94fecef137eb8452cfb82caa38a9593eab3d46ea (patch) | |
| tree | 5795085ab66faa2a02d9faad2e2ee0cf8feb3e79 /src/core/hle/ipc.h | |
| parent | Merge pull request #483 from bunnei/sonic (diff) | |
| download | yuzu-94fecef137eb8452cfb82caa38a9593eab3d46ea.tar.gz yuzu-94fecef137eb8452cfb82caa38a9593eab3d46ea.tar.xz yuzu-94fecef137eb8452cfb82caa38a9593eab3d46ea.zip | |
add IPC CommandType & Some HID FunctionInfo (#487)
* add some CommandType
* add some hid FunctionInfo
* add some other HID FunctionInfo
* delete non useful comments
Diffstat (limited to 'src/core/hle/ipc.h')
| -rw-r--r-- | src/core/hle/ipc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h index c9257de77..eaa5395ac 100644 --- a/src/core/hle/ipc.h +++ b/src/core/hle/ipc.h | |||
| @@ -29,7 +29,10 @@ enum class ControlCommand : u32 { | |||
| 29 | }; | 29 | }; |
| 30 | 30 | ||
| 31 | enum class CommandType : u32 { | 31 | enum class CommandType : u32 { |
| 32 | Invalid = 0, | ||
| 33 | LegacyRequest = 1, | ||
| 32 | Close = 2, | 34 | Close = 2, |
| 35 | LegacyControl = 3, | ||
| 33 | Request = 4, | 36 | Request = 4, |
| 34 | Control = 5, | 37 | Control = 5, |
| 35 | RequestWithContext = 6, | 38 | RequestWithContext = 6, |