diff options
author | bunnei <bunneidev@gmail.com> | 2023-02-04 00:42:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-04 00:42:18 +0100 |
commit | 193b513bf544c5dab80d1a849ce62e59e872cd3a (patch) | |
tree | 665e83a9b6a747f25b30de50350abec1f68d110f /src/core/hle/kernel/hle_ipc.h | |
parent | Merge pull request #9713 from unfamiliarplace/master (diff) | |
parent | fsp_srv: Copy HLE Read Buffer for OutputAccessLogToSdCard (diff) | |
download | yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar.gz yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar.bz2 yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar.lz yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar.xz yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.tar.zst yuzu-193b513bf544c5dab80d1a849ce62e59e872cd3a.zip |
Diffstat (limited to 'src/core/hle/kernel/hle_ipc.h')
-rw-r--r-- | src/core/hle/kernel/hle_ipc.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h index e252b5f4b..5bf4f171b 100644 --- a/src/core/hle/kernel/hle_ipc.h +++ b/src/core/hle/kernel/hle_ipc.h @@ -7,6 +7,7 @@ #include <functional> #include <memory> #include <optional> +#include <span> #include <string> #include <type_traits> #include <vector> @@ -270,8 +271,11 @@ public: return domain_message_header.has_value(); } - /// Helper function to read a buffer using the appropriate buffer descriptor - [[nodiscard]] std::vector<u8> ReadBuffer(std::size_t buffer_index = 0) const; + /// Helper function to get a span of a buffer using the appropriate buffer descriptor + [[nodiscard]] std::span<const u8> ReadBuffer(std::size_t buffer_index = 0) const; + + /// Helper function to read a copy of a buffer using the appropriate buffer descriptor + [[nodiscard]] std::vector<u8> ReadBufferCopy(std::size_t buffer_index = 0) const; /// Helper function to write a buffer using the appropriate buffer descriptor std::size_t WriteBuffer(const void* buffer, std::size_t size, |