~ubuntu-branches/ubuntu/saucy/clamav/saucy-backports

« back to all changes in this revision

Viewing changes to libclamav/filetypes.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2014-07-15 01:08:10 UTC
  • mfrom: (0.35.47 sid)
  • Revision ID: package-import@ubuntu.com-20140715010810-ru66ek4fun2iseba
Tags: 0.98.4+dfsg-2~ubuntu13.10.1
No-change backport to saucy (LP: #1341962)

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
    CL_TYPE_JAVA,
81
81
    CL_TYPE_XAR,
82
82
    CL_TYPE_XZ,
 
83
    CL_TYPE_OOXML_WORD,
 
84
    CL_TYPE_OOXML_PPT,
 
85
    CL_TYPE_OOXML_XL,
83
86
 
84
87
    /* Section for partition types */
85
88
    CL_TYPE_PART_ANY, /* unknown partition type */
86
89
    CL_TYPE_PART_HFSPLUS,
87
90
 
88
91
    /* bigger numbers have higher priority (in o-t-f detection) */
 
92
    CL_TYPE_MBR,
89
93
    CL_TYPE_HTML, /* on the fly */
90
94
    CL_TYPE_MAIL,  /* magic + on the fly */
91
95
    CL_TYPE_SFX, /* foo SFX marker */
99
103
    CL_TYPE_ISHIELD_MSI,
100
104
    CL_TYPE_ISO9660,
101
105
    CL_TYPE_DMG,
 
106
    CL_TYPE_GPT,
 
107
    CL_TYPE_APM,
102
108
    CL_TYPE_IGNORED /* please don't add anything below */
103
109
} cli_file_t;
104
110