diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-03-13 12:09:52 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-03-13 12:09:52 +0000 |
commit | ce021b79a7d073e343e5904e0fbb6a64ba3f7bb6 (patch) | |
tree | b4e4408dcc0ef10fb7830ae1fb2a95fee8edb7b9 /include | |
parent | 805a2f6f9907cd9f3a121ca70e1f35be97581615 (diff) | |
download | curl-ce021b79a7d073e343e5904e0fbb6a64ba3f7bb6.tar.gz |
CURLFORM_ARRAYSTART and ARRAYEND are now history
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index e275e898a..68095e502 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -576,13 +576,13 @@ typedef enum { CFINIT(CONTENTSLENGTH), CFINIT(FILECONTENT), CFINIT(ARRAY), - CFINIT(ARRAY_START), /* below are the options allowed within a array */ + CFINIT(OBSOLETE), CFINIT(FILE), CFINIT(CONTENTTYPE), CFINIT(CONTENTHEADER), CFINIT(FILENAME), CFINIT(END), - CFINIT(ARRAY_END), /* up are the options allowed within a array */ + CFINIT(OBSOLETE2), CURLFORM_LASTENTRY /* the last unusued */ } CURLformoption; @@ -624,7 +624,7 @@ CURLcode curl_global_init(long flags); void curl_global_cleanup(void); /* This is the version number */ -#define LIBCURL_VERSION "7.9.5" +#define LIBCURL_VERSION "7.9.5-cvs" #define LIBCURL_VERSION_NUM 0x070905 /* linked-list structure for the CURLOPT_QUOTE option (and other) */ |