diff options
author | bunnei <bunneidev@gmail.com> | 2018-02-13 21:41:20 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-02-13 23:26:03 -0500 |
commit | 1ce6fff0648008b7510e9feb3cf6696a2c25dd5c (patch) | |
tree | 879c69e708657d93a3c69717ae989350894ca285 /src/core/hle/ipc.h | |
parent | 4f8ee5e4562da3aa8678a42dd3b8d94f6c1a1f5c (diff) |
hle_ipc: Add helper functions for reading and writing buffers.
Diffstat (limited to 'src/core/hle/ipc.h')
-rw-r--r-- | src/core/hle/ipc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h index 0dcaede67..a6602e12c 100644 --- a/src/core/hle/ipc.h +++ b/src/core/hle/ipc.h @@ -91,6 +91,10 @@ struct BufferDescriptorX { address |= static_cast<VAddr>(address_bits_36_38) << 36; return address; } + + u64 Size() const { + return static_cast<u64>(size); + } }; static_assert(sizeof(BufferDescriptorX) == 8, "BufferDescriptorX size is incorrect"); |