]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/BrotliCustomDecompressLib/common/version.h
MdeModulePkg: Update Brotli DecompressLib to the latest v1.0.6
[mirror_edk2.git] / MdeModulePkg / Library / BrotliCustomDecompressLib / common / version.h
CommitLineData
2730470f
LG
1/* Copyright 2016 Google Inc. All Rights Reserved.\r
2\r
3 Distributed under MIT license.\r
4 See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\r
5*/\r
6\r
7/* Version definition. */\r
8\r
9#ifndef BROTLI_COMMON_VERSION_H_\r
10#define BROTLI_COMMON_VERSION_H_\r
11\r
12/* This macro should only be used when library is compiled together with client.\r
13 If library is dynamically linked, use BrotliDecoderVersion and\r
14 BrotliEncoderVersion methods. */\r
15\r
16/* Semantic version, calculated as (MAJOR << 24) | (MINOR << 12) | PATCH */\r
17#define BROTLI_VERSION 0x1000006\r
18\r
19/* This macro is used by build system to produce Libtool-friendly soname. See\r
20 https://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html\r
21 */\r
22\r
23/* ABI version, calculated as (CURRENT << 24) | (REVISION << 12) | AGE */\r
24#define BROTLI_ABI_VERSION 0x1006000\r
25\r
26#endif /* BROTLI_COMMON_VERSION_H_ */\r