29 #ifndef CPL_CURL_PRIV_H_INCLUDED
30 #define CPL_CURL_PRIV_H_INCLUDED
32 #include <curl/curl.h>
34 #ifndef CURL_AT_LEAST_VERSION
35 #define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|z)
36 #define CURL_AT_LEAST_VERSION(x,y,z) \
37 (LIBCURL_VERSION_NUM >= CURL_VERSION_BITS(x, y, z))