~ubuntu-branches/ubuntu/wily/yara/wily-proposed

« back to all changes in this revision

Viewing changes to libyara/include/yara/exefiles.h

  • Committer: Package Import Robot
  • Author(s): Hilko Bengen
  • Date: 2015-06-15 00:33:23 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20150615003323-n2wk9f7d65oivy72
Tags: 3.3.0+dfsg-1
* Removed Eriberto from Uploaders at his request
* Imported Upstream version 3.3.0+dfsg
* Added script to edit orig tarball, integrated into debian/watch.
* copyright: Removed notes about files that are no longer included in
  the source package

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#ifndef YR_EXEFILES_H
18
18
#define YR_EXEFILES_H
19
19
 
20
 
int yr_file_is_pe(
21
 
    uint8_t* buffer,
22
 
    size_t buffer_length);
23
 
 
24
 
 
25
 
int yr_file_is_elf(
26
 
    uint8_t* buffer,
27
 
    size_t buffer_length);
28
 
 
29
 
 
30
20
uint64_t yr_get_entry_point_offset(
31
21
    uint8_t* buffer,
32
22
    size_t buffer_length);