diff options
author | yuzubot <yuzu@yuzu-emu.org> | 2023-08-17 12:03:32 +0000 |
---|---|---|
committer | yuzubot <yuzu@yuzu-emu.org> | 2023-08-17 12:03:32 +0000 |
commit | e6afa3005981fd216c04cfe1fbb71220e321c034 (patch) | |
tree | 010dcb12e55563bf088b9d581dd14e142a856809 /src/common/lz4_compression.h | |
parent | a8c4f01f6ca040672e85faaf42a8ef12d373dd65 (diff) |
"Merge Tagged PR 11284"mainline-0-1528
Diffstat (limited to 'src/common/lz4_compression.h')
-rw-r--r-- | src/common/lz4_compression.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/lz4_compression.h b/src/common/lz4_compression.h index 7fd53a960b..3ae17c2bbb 100644 --- a/src/common/lz4_compression.h +++ b/src/common/lz4_compression.h @@ -56,4 +56,6 @@ namespace Common::Compression { [[nodiscard]] std::vector<u8> DecompressDataLZ4(std::span<const u8> compressed, std::size_t uncompressed_size); +[[nodiscard]] int DecompressDataLZ4(void* dst, size_t dst_size, const void* src, size_t src_size); + } // namespace Common::Compression |