126fa459cSmrg/* Copyright 2016 Google Inc. All Rights Reserved. 226fa459cSmrg 326fa459cSmrg Distributed under MIT license. 426fa459cSmrg See file LICENSE for detail or copy at https://opensource.org/licenses/MIT 526fa459cSmrg*/ 626fa459cSmrg 726fa459cSmrg/* Version definition. */ 826fa459cSmrg 926fa459cSmrg#ifndef BROTLI_COMMON_VERSION_H_ 1026fa459cSmrg#define BROTLI_COMMON_VERSION_H_ 1126fa459cSmrg 1226fa459cSmrg/* This macro should only be used when library is compiled together with client. 1326fa459cSmrg If library is dynamically linked, use BrotliDecoderVersion and 1426fa459cSmrg BrotliEncoderVersion methods. */ 1526fa459cSmrg 1626fa459cSmrg/* Semantic version, calculated as (MAJOR << 24) | (MINOR << 12) | PATCH */ 1726fa459cSmrg#define BROTLI_VERSION 0x1000009 1826fa459cSmrg 1926fa459cSmrg/* This macro is used by build system to produce Libtool-friendly soname. See 2026fa459cSmrg https://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html 2126fa459cSmrg */ 2226fa459cSmrg 2326fa459cSmrg/* ABI version, calculated as (CURRENT << 24) | (REVISION << 12) | AGE */ 2426fa459cSmrg#define BROTLI_ABI_VERSION 0x1009000 2526fa459cSmrg 2626fa459cSmrg#endif /* BROTLI_COMMON_VERSION_H_ */ 27