summaryrefslogtreecommitdiff
path: root/src/core/hle/ipc.h
diff options
context:
space:
mode:
authorGravatar greggameplayer2018-05-30 20:09:21 +0200
committerGravatar bunnei2018-05-30 14:09:21 -0400
commit94fecef137eb8452cfb82caa38a9593eab3d46ea (patch)
tree5795085ab66faa2a02d9faad2e2ee0cf8feb3e79 /src/core/hle/ipc.h
parentMerge pull request #483 from bunnei/sonic (diff)
downloadyuzu-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.h3
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
31enum class CommandType : u32 { 31enum 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,