~ubuntu-branches/ubuntu/jaunty/clamav/jaunty-backports

« back to all changes in this revision

Viewing changes to libclamav/clambc.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-10-02 15:36:00 UTC
  • mfrom: (10.1.6 sid)
  • mto: This revision was merged to the branch mainline in revision 13.
  • Revision ID: james.westby@ubuntu.com-20101002153600-2tx3vki1u55cdrjy
Tags: 0.96.3+dfsg-2ubuntu0.10.04.1
Microversion update to 0.96.3 for Lucid (LP: #653738)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    char *compiler;
27
27
    char *sigmaker;
28
28
    uint64_t timestamp;
29
 
    unsigned long maxStack, maxMem;
30
 
    unsigned long maxTime;
 
29
    unsigned formatlevel;
 
30
    unsigned minfunc, maxfunc;
 
31
    unsigned maxresource;/* reserved */
31
32
    unsigned targetExclude;
32
33
};
33
34
 
34
 
#define BC_FUNC_LEVEL 6
 
35
#define BC_FORMAT_096 6
 
36
#define BC_FORMAT_LEVEL 7
35
37
#define BC_HEADER "ClamBC"
36
38
 
37
39
enum bc_opcode {
124
126
  GLOBAL_VIRUSNAMES,
125
127
  GLOBAL_PEDATA,
126
128
  GLOBAL_FILESIZE,
 
129
  GLOBAL_MATCH_OFFSETS,
127
130
  _LAST_GLOBAL
128
131
};
129
132