~ubuntu-branches/ubuntu/dapper/clamav/dapper

« back to all changes in this revision

Viewing changes to clamscan/shared.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Gran
  • Date: 2006-01-10 02:55:18 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20060110025518-92bhgfe911byl3bc
Tags: upstream-0.88
ImportĀ upstreamĀ versionĀ 0.88

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#define __SHARED_H
21
21
 
22
22
struct s_info {
23
 
    int signs; /* number of signatures loaded */
24
 
    int dirs; /* number of scanned directories */
25
 
    int files; /* number of scanned files */
26
 
    int ifiles; /* number of infected files */
27
 
    int notremoved; /* number of not removed files (if --remove) */
28
 
    int notmoved; /* number of not moved files (if --move) */
29
 
    int errors; /*  ... of errors */
30
 
    long int blocks; /* number of read 16kb blocks */
 
23
    unsigned int sigs; /* number of signatures loaded */
 
24
    unsigned int dirs; /* number of scanned directories */
 
25
    unsigned int files; /* number of scanned files */
 
26
    unsigned int ifiles; /* number of infected files */
 
27
    unsigned int notremoved; /* number of not removed files (if --remove) */
 
28
    unsigned int notmoved; /* number of not moved files (if --move) */
 
29
    unsigned int errors; /*  ... of errors */
 
30
    unsigned long int blocks; /* number of read 16kb blocks */
31
31
};
32
32
 
33
33
extern struct s_info claminfo;