/*** Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: BasicCompression.hpp Date: 2021-6-9 Author: Reece ***/ #pragma once namespace Aurora::Compression { /** Compresses an in memory blob with zstandard */ AUKN_SYM bool Compress(const void *buffer, AuUInt32 length, AuList &out, int compressionLevel = 3); /** Compresses an in memory blob with zstandard */ AUKN_SYM bool Compress(const AuList &in, AuList &out, int compressionLevel = 3); /** Decompresses an in memory blob with zstandard */ AUKN_SYM bool Decompress(const void *buffer, AuUInt32 length, AuList &out); /** Decompresses an in memory blob with zstandard */ AUKN_SYM bool Decompress(const AuList &in, AuList &out); }