curlver.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #ifndef __CURL_CURLVER_H
  2. #define __CURL_CURLVER_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2004, Daniel Stenberg, <[email protected]>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at http://curl.haxx.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. * $Id$
  24. ***************************************************************************/
  25. /* This header file contains nothing but libcurl version info, generated by
  26. a script at release-time. This was made its own header file in 7.11.2 */
  27. /* This is the version number of the libcurl package from which this header
  28. file origins: */
  29. #define LIBCURL_VERSION "7.12.1"
  30. /* This is the numeric version of the libcurl version number, meant for easier
  31. parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
  32. always follow this syntax:
  33. 0xXXYYZZ
  34. Where XX, YY and ZZ are the main version, release and patch numbers in
  35. hexadecimal. All three numbers are always represented using two digits. 1.2
  36. would appear as "0x010200" while version 9.11.7 appears as "0x090b07".
  37. This 6-digit hexadecimal number does not show pre-release number, and it is
  38. always a greater number in a more recent release. It makes comparisons with
  39. greater than and less than work.
  40. */
  41. #define LIBCURL_VERSION_NUM 0x70C01
  42. /* The numeric version number is also available "in parts" by using these
  43. defines: */
  44. #define LIBCURL_VERSION_MAJOR 7
  45. #define LIBCURL_VERSION_MINOR 12
  46. #define LIBCURL_VERSION_PATCH 1
  47. #endif /* __CURL_CURLVER_H */