summaryrefslogtreecommitdiff
path: root/src/format/exe_format-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-10-30 18:35:47 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-10-30 18:35:47 (GMT)
commit7c7109c1a8aaedea40af4b96d4b81d6ba4496226 (patch)
tree471709f8bccae04f492d03017a1e94d0ca48b962 /src/format/exe_format-int.h
parent8a30afc05eed869865ba4dc9c107119f7ec00fe4 (diff)
Displayed all found strings on binary loading.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@40 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/exe_format-int.h')
-rw-r--r--src/format/exe_format-int.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/format/exe_format-int.h b/src/format/exe_format-int.h
index 4dcf1c4..2fdb673 100644
--- a/src/format/exe_format-int.h
+++ b/src/format/exe_format-int.h
@@ -57,6 +57,9 @@ typedef bool (* find_section_fc) (const exe_format *, const char *, off_t *, off
/* Récupère tous les symboles présents dans le contenu binaire. */
typedef size_t (* get_symbols_fc) (const exe_format *, char ***, SymbolType **, uint64_t **);
+/* Récupère tous les symboles présents dans le contenu binaire. */
+typedef size_t (* get_resolved_fc) (const exe_format *, char ***, ResolvedType **, uint64_t **);
+
/* Recherche le symbole correspondant à une adresse. */
typedef bool (* resolve_symbol_fc) (const exe_format *, char **, SymbolType *, uint64_t *);
@@ -71,6 +74,7 @@ struct _exe_format
get_def_parts_fc get_def_parts; /* Liste des parties de code */
find_section_fc find_section; /* Recherche d'une section */
get_symbols_fc get_symbols; /* Liste des symboles présents */
+ get_resolved_fc get_resolved; /* Liste des éléments présents */
resolve_symbol_fc resolve_symbol; /* Recherche de symboles */
};