version.h 871 B

1234567891011121314151617181920212223242526
  1. /* Copyright 2016 Google Inc. All Rights Reserved.
  2. Distributed under MIT license.
  3. See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
  4. */
  5. /* Version definition. */
  6. #ifndef BROTLI_COMMON_VERSION_H_
  7. #define BROTLI_COMMON_VERSION_H_
  8. /* This macro should only be used when library is compiled together with client.
  9. If library is dynamically linked, use BrotliDecoderVersion and
  10. BrotliEncoderVersion methods. */
  11. /* Semantic version, calculated as (MAJOR << 24) | (MINOR << 12) | PATCH */
  12. #define BROTLI_VERSION 0x1000007
  13. /* This macro is used by build system to produce Libtool-friendly soname. See
  14. https://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
  15. */
  16. /* ABI version, calculated as (CURRENT << 24) | (REVISION << 12) | AGE */
  17. #define BROTLI_ABI_VERSION 0x1007000
  18. #endif /* BROTLI_COMMON_VERSION_H_ */