diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-10-09 21:35:40 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-10-09 21:35:40 +0000 |
commit | 8c62e337b08882a369dd2b55aaa47f9a96b003e2 (patch) | |
tree | 5e25bc40a6e3b146a7b882dbd9c098fd479f467d /include | |
parent | 51bcdb472bffe94c6482b9cc90cbc4a3b35e60d0 (diff) |
bool typedef fix
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 53f977966..082cd52ae 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -412,10 +412,6 @@ typedef enum { #ifdef __BEOS__ #include <support/SupportDefs.h> -#else -#ifndef __cplusplus /* (rabe) */ -typedef char bool; -#endif /* (rabe) */ #endif @@ -442,8 +438,8 @@ char *curl_getenv(char *variable); char *curl_version(void); /* This is the version number */ -#define LIBCURL_VERSION "7.3" -#define LIBCURL_VERSION_NUM 0x070300 +#define LIBCURL_VERSION "7.4-pre5" +#define LIBCURL_VERSION_NUM 0x070400 /* linked-list structure for the CURLOPT_QUOTE option (and other) */ struct curl_slist { @@ -661,8 +657,10 @@ typedef enum { CURLINFO_SIZE_DOWNLOAD = CURLINFO_DOUBLE + 8, CURLINFO_SPEED_DOWNLOAD = CURLINFO_DOUBLE + 9, CURLINFO_SPEED_UPLOAD = CURLINFO_DOUBLE + 10, - CURLINFO_LASTONE = 11, + CURLINFO_HEADER_SIZE = CURLINFO_LONG + 11, + CURLINFO_REQUEST_SIZE = CURLINFO_LONG + 12, + CURLINFO_LASTONE = 13, } CURLINFO; /* |