diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-01-29 10:49:32 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-01-29 10:49:32 +0000 |
commit | 76c53c690cefa62e09aa553d0f1f9a26122c0ff1 (patch) | |
tree | 70a042934ba4fc6ae6ae1d447a0320b4f1ef9cf6 /include | |
parent | c341b11aafedb8beb209342dbfb12f9d70f742b4 (diff) | |
download | curl-76c53c690cefa62e09aa553d0f1f9a26122c0ff1.tar.gz |
Giaslas Georgios introduced CURLINFO_CONTENT_TYPE
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 44b317410..62ac0479d 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -666,7 +666,11 @@ typedef enum { CURLINFO_STARTTRANSFER_TIME = CURLINFO_DOUBLE + 17, - CURLINFO_LASTONE = 18 + CURLINFO_CONTENT_TYPE = CURLINFO_STRING + 18, + + /* Fill in new entries here! */ + + CURLINFO_LASTONE = 19 } CURLINFO; /* unfortunately, the easy.h include file needs the options and info stuff |