summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/hle_ipc.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-14 03:41:20 +0100
committerbunnei <bunneidev@gmail.com>2018-02-14 05:26:03 +0100
commit1ce6fff0648008b7510e9feb3cf6696a2c25dd5c (patch)
tree879c69e708657d93a3c69717ae989350894ca285 /src/core/hle/kernel/hle_ipc.h
parentvi: Fix TransactParcelAuto to support both buffer formats. (diff)
downloadyuzu-1ce6fff0648008b7510e9feb3cf6696a2c25dd5c.tar
yuzu-1ce6fff0648008b7510e9feb3cf6696a2c25dd5c.tar.gz
yuzu-1ce6fff0648008b7510e9feb3cf6696a2c25dd5c.tar.bz2
yuzu-1ce6fff0648008b7510e9feb3cf6696a2c25dd5c.tar.lz
yuzu-1ce6fff0648008b7510e9feb3cf6696a2c25dd5c.tar.xz
yuzu-1ce6fff0648008b7510e9feb3cf6696a2c25dd5c.tar.zst
yuzu-1ce6fff0648008b7510e9feb3cf6696a2c25dd5c.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/hle_ipc.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h
index da8335b35..0cc270909 100644
--- a/src/core/hle/kernel/hle_ipc.h
+++ b/src/core/hle/kernel/hle_ipc.h
@@ -143,6 +143,18 @@ public:
return domain_message_header;
}
+ /// Helper function to read a buffer using the appropriate buffer descriptor
+ std::vector<u8> ReadBuffer() const;
+
+ /// Helper function to write a buffer using the appropriate buffer descriptor
+ size_t WriteBuffer(const void* buffer, const size_t size) const;
+
+ /// Helper function to write a buffer using the appropriate buffer descriptor
+ size_t WriteBuffer(const std::vector<u8>& buffer) const;
+
+ /// Helper function to get the size of the output buffer
+ size_t GetWriteBufferSize() const;
+
template <typename T>
SharedPtr<T> GetCopyObject(size_t index) {
ASSERT(index < copy_objects.size());