You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

json_c_version.h 1.3 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright (c) 2012,2017 Eric Haszlakiewicz
  3. *
  4. * This library is free software; you can redistribute it and/or modify
  5. * it under the terms of the MIT license. See COPYING for details.
  6. */
  7. /**
  8. * @file
  9. * @brief Methods for retrieving the json-c version.
  10. */
  11. #ifndef _json_c_version_h_
  12. #define _json_c_version_h_
  13. #define JSON_C_MAJOR_VERSION 0
  14. #define JSON_C_MINOR_VERSION 13
  15. #define JSON_C_MICRO_VERSION 99
  16. #define JSON_C_VERSION_NUM ((JSON_C_MAJOR_VERSION << 16) | \
  17. (JSON_C_MINOR_VERSION << 8) | \
  18. JSON_C_MICRO_VERSION)
  19. #define JSON_C_VERSION "0.13.99"
  20. #ifndef JSON_EXPORT
  21. #if defined(_MSC_VER)
  22. #define JSON_EXPORT __declspec(dllexport)
  23. #else
  24. #define JSON_EXPORT extern
  25. #endif
  26. #endif
  27. /**
  28. * @see JSON_C_VERSION
  29. * @return the version of the json-c library as a string
  30. */
  31. JSON_EXPORT const char *json_c_version(void); /* Returns JSON_C_VERSION */
  32. /**
  33. * The json-c version encoded into an int, with the low order 8 bits
  34. * being the micro version, the next higher 8 bits being the minor version
  35. * and the next higher 8 bits being the major version.
  36. * For example, 7.12.99 would be 0x00070B63.
  37. *
  38. * @see JSON_C_VERSION_NUM
  39. * @return the version of the json-c library as an int
  40. */
  41. JSON_EXPORT int json_c_version_num(void); /* Returns JSON_C_VERSION_NUM */
  42. #endif