corrected the use of the progress function
authorDaniel Stenberg <daniel@haxx.se>
Mon, 11 Mar 2002 15:00:57 +0000 (15:00 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 11 Mar 2002 15:00:57 +0000 (15:00 +0000)
docs/examples/curlgtk.c

index 7c9ce2a1ba579fbf56f381acf2574b9eebdd7d88..bba1fe1c946342be95db853382095e7841813f49 100644 (file)
@@ -26,7 +26,11 @@ size_t my_read_func(void *ptr, size_t size, size_t nmemb, FILE *stream)
   return fread(ptr, size, nmemb, stream);
 }
 
-int my_progress_func(GtkWidget *Bar, int t, int d)
+int my_progress_func(GtkWidget *Bar,
+                     double t, /* dltotal */
+                     double d, /* dlnow */
+                     double ultotal,
+                     double ulnow)
 {
 /*  printf("%d / %d (%g %%)\n", d, t, d*100.0/t);*/
   gdk_threads_enter();
@@ -50,6 +54,7 @@ void *curl_thread(void *ptr)
     curl_easy_setopt(curl, CURLOPT_URL, url);
     curl_easy_setopt(curl, CURLOPT_FILE, outfile);
     curl_easy_setopt(curl, CURLOPT_READFUNCTION, my_read_func);
+    curl_easy_setopt(curl, CURLOPT_NOPROGRESS, FALSE);
     curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, my_progress_func);
     curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, Bar);