diff options
author | bunnei <bunneidev@gmail.com> | 2018-04-30 23:24:31 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-05-01 21:57:44 -0400 |
commit | fadab1d5f365c11f0b4c33e74b0d297756f2f3f9 (patch) | |
tree | d8add81daca8bc72d5344549528ce4f3953f250f /src/core/hle/ipc.h | |
parent | 8262aeeac886f8b03cac5a5050580ac7ac77af4c (diff) |
ipc: Add support for PopIpcInterface() method.
- This can be used for domain objects as inputs to service functions.
Diffstat (limited to 'src/core/hle/ipc.h')
-rw-r--r-- | src/core/hle/ipc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h index a6602e12c..ef6595550 100644 --- a/src/core/hle/ipc.h +++ b/src/core/hle/ipc.h @@ -167,6 +167,7 @@ struct DomainMessageHeader { struct { union { BitField<0, 8, CommandType> command; + BitField<8, 8, u32_le> input_object_count; BitField<16, 16, u32_le> size; }; u32_le object_id; |