diff options
Diffstat (limited to 'src/format/symbol.h')
-rw-r--r-- | src/format/symbol.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/format/symbol.h b/src/format/symbol.h index 91268f1..76bf46b 100644 --- a/src/format/symbol.h +++ b/src/format/symbol.h @@ -65,6 +65,9 @@ GType g_binary_symbol_get_type(void); /* Crée un nouveau symbole d'exécutable. */ GBinSymbol *g_binary_symbol_new(SymbolType, const char *, vmpa_t); +/* Compare deux symboles d'exécutable selon leurs propriétés. */ +int g_binary_symbol_cmp(const GBinSymbol **, const GBinSymbol **); + /* Fournit le type du symbole. */ SymbolType g_binary_symbol_get_target_type(const GBinSymbol *); @@ -74,6 +77,9 @@ 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 un étiquette pour viser un symbole. */ +const char *g_binary_symbol_get_label(const GBinSymbol *); + /* Fournit l'emplacement où se situe un symbole. */ const mrange_t *g_binary_symbol_get_range(const GBinSymbol *); |