From 0faa9cfb3a9015ca723f012ca84609f602c7c03c Mon Sep 17 00:00:00 2001 From: Legonzaur <34353603+Legonzaur@users.noreply.github.com> Date: Wed, 16 Feb 2022 00:06:31 +0100 Subject: Compress previous logs and dump files on launch (#73) * added zlib + gzip Co-authored-by: Nathan TIEN YOU --- NorthstarDedicatedTest/include/zlib/gzip/version.hpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 NorthstarDedicatedTest/include/zlib/gzip/version.hpp (limited to 'NorthstarDedicatedTest/include/zlib/gzip/version.hpp') diff --git a/NorthstarDedicatedTest/include/zlib/gzip/version.hpp b/NorthstarDedicatedTest/include/zlib/gzip/version.hpp new file mode 100644 index 00000000..47af692e --- /dev/null +++ b/NorthstarDedicatedTest/include/zlib/gzip/version.hpp @@ -0,0 +1,16 @@ +#pragma once + +/// The major version number +#define GZIP_VERSION_MAJOR 1 + +/// The minor version number +#define GZIP_VERSION_MINOR 0 + +/// The patch number +#define GZIP_VERSION_PATCH 0 + +/// The complete version number +#define GZIP_VERSION_CODE (GZIP_VERSION_MAJOR * 10000 + GZIP_VERSION_MINOR * 100 + GZIP_VERSION_PATCH) + +/// Version number as string +#define GZIP_VERSION_STRING "1.0.0" \ No newline at end of file -- cgit v1.2.3