~ubuntu-branches/ubuntu/trusty/rhash/trusty

« back to all changes in this revision

Viewing changes to output.h

  • Committer: Package Import Robot
  • Author(s): Aleksey Kravchenko
  • Date: 2011-09-14 23:50:14 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: package-import@ubuntu.com-20110914235014-m9mk3eg7e6rah17x
Tags: 1.2.8-1
* New upstream release version 1.2.8
 - language bindings for Java, Perl, Python, Ruby
 - Russian translation
 - fixed recommended libssl1.0.0 dependency
 - patched broken re-compilation
 - fixed a mistype in perl documentation
 - control: updated Vcs-Git field
 - copyright: corrected Format field, added Upstream-Contact
 - copyright: updated Copyright field, mentioned another developer

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
/**
14
14
 * A 'method' to output percents.
15
15
 */
16
 
struct percents_output_info_t {
 
16
struct percents_output_info_t
 
17
{
17
18
        int  (*init)(struct file_info *info);
18
19
        void (*update)(struct file_info *info, uint64_t offset);
19
20
        void (*finish)(struct file_info *info, int process_res);
30
31
void setup_output(void);
31
32
 
32
33
void log_msg(const char* format, ...);
 
34
void log_error(const char* format, ...);
 
35
void log_warning(const char* format, ...);
33
36
void log_file_error(const char* filepath);
34
37
void print_check_stats(void);
35
38