e8e1543cea
* [Utils]: Re-order namespaces * [Steam]: Fix comp
16 lines
263 B
C++
16 lines
263 B
C++
#pragma once
|
|
|
|
#define CHUNK 16384
|
|
#define DEFLATE_ZLIB false
|
|
#define DEFLATE_ZSTD true
|
|
|
|
namespace Utils::Compression
|
|
{
|
|
class ZLib
|
|
{
|
|
public:
|
|
static std::string Compress(const std::string& data);
|
|
static std::string Decompress(const std::string& data);
|
|
};
|
|
}
|