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.

ares_version.h 598 B

12345678910111213141516171819202122
  1. #ifndef ARES__VERSION_H
  2. #define ARES__VERSION_H
  3. /* This is the global package copyright */
  4. #define ARES_COPYRIGHT "2004 - 2021 Daniel Stenberg, <daniel@haxx.se>."
  5. #define ARES_VERSION_MAJOR 1
  6. #define ARES_VERSION_MINOR 18
  7. #define ARES_VERSION_PATCH 1
  8. #define ARES_VERSION ((ARES_VERSION_MAJOR << 16) | (ARES_VERSION_MINOR << 8) | (ARES_VERSION_PATCH))
  9. #define ARES_VERSION_STR "1.18.1"
  10. #if (ARES_VERSION >= 0x010700)
  11. #define CARES_HAVE_ARES_LIBRARY_INIT 1
  12. #define CARES_HAVE_ARES_LIBRARY_CLEANUP 1
  13. #else
  14. #undef CARES_HAVE_ARES_LIBRARY_INIT
  15. #undef CARES_HAVE_ARES_LIBRARY_CLEANUP
  16. #endif
  17. #endif