diff options
Diffstat (limited to 'src/format/executable.h')
-rw-r--r-- | src/format/executable.h | 3 |
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 *); |