summaryrefslogtreecommitdiff
path: root/src/core/hle/ipc.h
diff options
context:
space:
mode:
authorGravatar Sebastian Valle2018-05-19 17:03:30 -0500
committerGravatar GitHub2018-05-19 17:03:30 -0500
commit353e1dd7e43e06b3607a6bd07e93ed2e0da2fcfc (patch)
tree0a2fe597d4270bbf37d0bd4b008faf8723ec1a7f /src/core/hle/ipc.h
parentAdd and correct some Error Modules (#444) (diff)
parentAdded RequestWithContext & ControlWithContext (diff)
downloadyuzu-353e1dd7e43e06b3607a6bd07e93ed2e0da2fcfc.tar.gz
yuzu-353e1dd7e43e06b3607a6bd07e93ed2e0da2fcfc.tar.xz
yuzu-353e1dd7e43e06b3607a6bd07e93ed2e0da2fcfc.zip
Merge pull request #443 from ogniK5377/ipc-500
Added IPC RequestWithContext & ControlWithContext
Diffstat (limited to 'src/core/hle/ipc.h')
-rw-r--r--src/core/hle/ipc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h
index ef6595550..c9257de77 100644
--- a/src/core/hle/ipc.h
+++ b/src/core/hle/ipc.h
@@ -32,6 +32,8 @@ enum class CommandType : u32 {
32 Close = 2, 32 Close = 2,
33 Request = 4, 33 Request = 4,
34 Control = 5, 34 Control = 5,
35 RequestWithContext = 6,
36 ControlWithContext = 7,
35 Unspecified, 37 Unspecified,
36}; 38};
37 39