summaryrefslogtreecommitdiff
path: root/src/format/executable.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-01-02 01:48:30 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-01-02 01:48:30 (GMT)
commit2d95ce74200c8cb7c328535235a8c8e74686794e (patch)
tree6e006e9b43b022a40ba53c58ed1f39be5327f880 /src/format/executable.h
parent7468875c1022337efbff78069d715672ae083150 (diff)
Provided ways to load, save and edit some binary parts selection.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@141 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/executable.h')
-rw-r--r--src/format/executable.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/format/executable.h b/src/format/executable.h
index 4d3f759..2042df4 100644
--- a/src/format/executable.h
+++ b/src/format/executable.h
@@ -75,6 +75,9 @@ vmpa_t g_exe_format_get_entry_point(const GExeFormat *);
/* Fournit les références aux zones binaires à analyser. */
GBinPart **g_exe_format_get_parts(const GExeFormat *, size_t *);
+/* Fournit la position correspondant à une adresse virtuelle. */
+bool g_exe_format_translate_address_into_offset(const GExeFormat *, vmpa_t, off_t *);
+
/* Fournit l'adresse virtuelle correspondant à une position. */
bool g_exe_format_translate_offset_into_address(const GExeFormat *, off_t, vmpa_t *);