1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #ifndef __CURL_CURLVER_H
- #define __CURL_CURLVER_H
- #define LIBCURL_COPYRIGHT "1996 - 2016 Daniel Stenberg, <daniel@haxx.se>."
- #define LIBCURL_VERSION "7.52.0-DEV"
- #define LIBCURL_VERSION_MAJOR 7
- #define LIBCURL_VERSION_MINOR 52
- #define LIBCURL_VERSION_PATCH 0
- #define LIBCURL_VERSION_NUM 0x073400
- #define LIBCURL_TIMESTAMP "DEV"
- #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
|