~ubuntu-branches/ubuntu/hardy/wget/hardy-security

« back to all changes in this revision

Viewing changes to src/progress.h

  • Committer: Bazaar Package Importer
  • Author(s): Noèl Köthe
  • Date: 2005-06-26 16:46:25 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050626164625-jjcde8hyztx7xq7o
Tags: 1.10-2
* wget-fix_error--save-headers patch from upstream
  (closes: Bug#314728)
* don't pattern-match server redirects patch from upstream
  (closes: Bug#163243)
* correct de.po typos
  (closes: Bug#313883)
* wget-E_html_behind_file_counting fix problem with adding the
  numbers after the html extension
* updated Standards-Version: to 3.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
void set_progress_implementation PARAMS ((const char *));
35
35
void progress_schedule_redirect PARAMS ((void));
36
36
 
37
 
void *progress_create PARAMS ((long, long));
38
 
void progress_update PARAMS ((void *, long, double));
 
37
void *progress_create PARAMS ((wgint, wgint));
 
38
int progress_interactive_p PARAMS ((void *));
 
39
void progress_update PARAMS ((void *, wgint, double));
39
40
void progress_finish PARAMS ((void *, double));
40
41
 
41
42
RETSIGTYPE progress_handle_sigwinch PARAMS ((int));