diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-11-06 11:33:08 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-11-06 11:33:08 +0000 |
commit | 45abf75e1ee8f94be0bc42eb2db8118f545dd2d7 (patch) | |
tree | e357936d0375509ab2e86fa1e162dc071b0bf968 | |
parent | 4ec4e91de021827c6715dd2134f238279d90c948 (diff) |
We offer the version number "in parts" as well by introducing three new
defines.
-rw-r--r-- | include/curl/curl.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 42d685826..5884c292e 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -45,7 +45,13 @@ always a greater number in a more recent release. It makes comparisons with greater than and less than work. */ -#define LIBCURL_VERSION_NUM 0x070a08 +#define LIBCURL_VERSION_NUM 0x070a09 + +/* The numeric version number is also available "in parts" by using these + defines: */ +#define LIBCURL_VERSION_MAJOR 7 +#define LIBCURL_VERSION_MINOR 10 +#define LIBCURL_VERSION_PATCH 9 #include <stdio.h> |