summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-10-09 21:35:40 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-10-09 21:35:40 +0000
commit8c62e337b08882a369dd2b55aaa47f9a96b003e2 (patch)
tree5e25bc40a6e3b146a7b882dbd9c098fd479f467d /include
parent51bcdb472bffe94c6482b9cc90cbc4a3b35e60d0 (diff)
downloadcurl-8c62e337b08882a369dd2b55aaa47f9a96b003e2.tar.gz
bool typedef fix
Diffstat (limited to 'include')
-rw-r--r--include/curl/curl.h12
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;
/*