diff options
author | bunnei <bunneidev@gmail.com> | 2018-05-02 09:55:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-02 09:55:14 -0400 |
commit | 902182f80cb808d221998ab904a0c8dab93fd440 (patch) | |
tree | d8add81daca8bc72d5344549528ce4f3953f250f /src/core/hle/ipc.h | |
parent | 8262aeeac886f8b03cac5a5050580ac7ac77af4c (diff) | |
parent | fadab1d5f365c11f0b4c33e74b0d297756f2f3f9 (diff) |
Merge pull request #427 from bunnei/domain-inputs
ipc: Add support for PopIpcInterface() method.
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; |