1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #ifndef __CURL_CURLVER_H
- #define __CURL_CURLVER_H
- #define LIBCURL_COPYRIGHT "1996 - 2018 Daniel Stenberg, <daniel@haxx.se>."
- #define LIBCURL_VERSION "7.61.1"
- #define LIBCURL_VERSION_MAJOR 7
- #define LIBCURL_VERSION_MINOR 61
- #define LIBCURL_VERSION_PATCH 1
- #define LIBCURL_VERSION_NUM 0x073d01
- #define LIBCURL_TIMESTAMP "2018-09-05"
- #define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|z)
- #define CURL_AT_LEAST_VERSION(x,y,z) \
- (LIBCURL_VERSION_NUM >= CURL_VERSION_BITS(x, y, z))
- #endif
|