summaryrefslogtreecommitdiff
path: root/src/core/hle/ipc.h
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2018-05-19 17:03:30 -0500
committerGitHub <noreply@github.com>2018-05-19 17:03:30 -0500
commit353e1dd7e43e06b3607a6bd07e93ed2e0da2fcfc (patch)
tree0a2fe597d4270bbf37d0bd4b008faf8723ec1a7f /src/core/hle/ipc.h
parenta215f63235508050003859e9fe34f092c9573472 (diff)
parentfd86cdb2e24a72f099889393da8236002be04565 (diff)
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 {
Close = 2,
Request = 4,
Control = 5,
+ RequestWithContext = 6,
+ ControlWithContext = 7,
Unspecified,
};