summaryrefslogtreecommitdiff
path: root/src/core/hle/ipc.h
diff options
context:
space:
mode:
authorgreggameplayer <33609333+greggameplayer@users.noreply.github.com>2018-05-30 20:09:21 +0200
committerbunnei <bunneidev@gmail.com>2018-05-30 14:09:21 -0400
commit94fecef137eb8452cfb82caa38a9593eab3d46ea (patch)
tree5795085ab66faa2a02d9faad2e2ee0cf8feb3e79 /src/core/hle/ipc.h
parent8df011a57fc393853bc94421dca1e5913e30a0c8 (diff)
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 {
};
enum class CommandType : u32 {
+ Invalid = 0,
+ LegacyRequest = 1,
Close = 2,
+ LegacyControl = 3,
Request = 4,
Control = 5,
RequestWithContext = 6,