aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-03-05 10:15:38 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-03-05 10:15:38 +0000
commit60b2e74fa3bb0feb684f29632f50990f18c7abbb (patch)
treebc494c3507bb54238781c166fc6c717b31d78611
parentcda16297d141ab5f6d68050b5541f0362cd3de04 (diff)
corrected the progress callback prototype!!!
-rw-r--r--include/curl/curl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index a12a24672..5598c82b8 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -75,10 +75,10 @@ struct HttpPost {
};
typedef int (*curl_progress_callback)(void *clientp,
- size_t dltotal,
- size_t dlnow,
- size_t ultotal,
- size_t ulnow);
+ double dltotal,
+ double dlnow,
+ double ultotal,
+ double ulnow);
typedef size_t (*curl_write_callback)(char *buffer,
size_t size,
@@ -616,7 +616,7 @@ CURLcode curl_global_init(long flags);
void curl_global_cleanup(void);
/* This is the version number */
-#define LIBCURL_VERSION "7.9.5-pre4"
+#define LIBCURL_VERSION "7.9.5-pre6"
#define LIBCURL_VERSION_NUM 0x070905
/* linked-list structure for the CURLOPT_QUOTE option (and other) */