Photon 1.0.0
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1#pragma once
2
4#define GZIP_VERSION_MAJOR 1
5
7#define GZIP_VERSION_MINOR 0
8
10#define GZIP_VERSION_PATCH 0
11
13#define GZIP_VERSION_CODE (GZIP_VERSION_MAJOR * 10000 + GZIP_VERSION_MINOR * 100 + GZIP_VERSION_PATCH)
14
16#define GZIP_VERSION_STRING "1.0.0"