From 8c62e337b08882a369dd2b55aaa47f9a96b003e2 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 9 Oct 2000 21:35:40 +0000 Subject: bool typedef fix --- include/curl/curl.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'include') 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 -#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; /* -- cgit v1.2.3