diff options
Diffstat (limited to 'src/format/symbol.h')
-rw-r--r-- | src/format/symbol.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/format/symbol.h b/src/format/symbol.h index 407375f..8d27f97 100644 --- a/src/format/symbol.h +++ b/src/format/symbol.h @@ -37,6 +37,7 @@ typedef enum _SymbolType { STP_DATA, /* Données brutes */ + STP_ROUTINE, /* Simple morceau de code */ STP_OBJECT, /* Objet quelconque */ STP_FUNCTION, /* Simple morceau de code */ STP_STRING /* Chaîne de caractères */ @@ -73,10 +74,8 @@ const char *g_binary_symbol_to_string(const GBinSymbol *); /* Fournit l'adresse associée à un symbole. */ vmpa_t g_binary_symbol_get_address(const GBinSymbol *); - -/* Fournit l'adresse associée à un symbole. */ -const vmpa2t *g_binary_symbol_get_address2(const GBinSymbol *); - +/* Fournit l'emplacement où se situe un symbole. */ +const vmpa2t *g_binary_symbol_get_location(const GBinSymbol *, off_t *); /* Fournit la taille officielle d'un symbole. */ off_t g_binary_symbol_get_size(const GBinSymbol *); |