diff options
author | bunnei <bunneidev@gmail.com> | 2018-05-02 15:55:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-02 15:55:14 +0200 |
commit | 902182f80cb808d221998ab904a0c8dab93fd440 (patch) | |
tree | d8add81daca8bc72d5344549528ce4f3953f250f /src/core/hle/ipc.h | |
parent | Merge pull request #429 from Subv/ioctl_corruption (diff) | |
parent | ipc: Add support for PopIpcInterface() method. (diff) | |
download | yuzu-902182f80cb808d221998ab904a0c8dab93fd440.tar yuzu-902182f80cb808d221998ab904a0c8dab93fd440.tar.gz yuzu-902182f80cb808d221998ab904a0c8dab93fd440.tar.bz2 yuzu-902182f80cb808d221998ab904a0c8dab93fd440.tar.lz yuzu-902182f80cb808d221998ab904a0c8dab93fd440.tar.xz yuzu-902182f80cb808d221998ab904a0c8dab93fd440.tar.zst yuzu-902182f80cb808d221998ab904a0c8dab93fd440.zip |
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; |