1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #ifndef CURLINC_CURLVER_H
- #define CURLINC_CURLVER_H
- #define LIBCURL_COPYRIGHT "1996 - 2021 Daniel Stenberg, <daniel@haxx.se>."
- #define LIBCURL_VERSION "7.80.0"
- #define LIBCURL_VERSION_MAJOR 7
- #define LIBCURL_VERSION_MINOR 80
- #define LIBCURL_VERSION_PATCH 0
- #define LIBCURL_VERSION_NUM 0x075000
- #define LIBCURL_TIMESTAMP "2021-11-10"
- #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
|