ares_version.h 648 B

123456789101112131415161718192021222324
  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 19
  7. #define ARES_VERSION_PATCH 0
  8. #define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
  9. (ARES_VERSION_MINOR<<8)|\
  10. (ARES_VERSION_PATCH))
  11. #define ARES_VERSION_STR "1.19.0"
  12. #if (ARES_VERSION >= 0x010700)
  13. # define CARES_HAVE_ARES_LIBRARY_INIT 1
  14. # define CARES_HAVE_ARES_LIBRARY_CLEANUP 1
  15. #else
  16. # undef CARES_HAVE_ARES_LIBRARY_INIT
  17. # undef CARES_HAVE_ARES_LIBRARY_CLEANUP
  18. #endif
  19. #endif