summaryrefslogtreecommitdiff
path: root/src/format/format.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-05-13 20:10:57 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-05-13 20:10:57 (GMT)
commitee0954cd4f25cbd926f9b4e4ba121c34877b1cb4 (patch)
tree927f40cf310d114f038cfea207db177cd9b1524a /src/format/format.h
parented5541867f94b36e701708757a0489298fe77135 (diff)
Fixed a lot of compilation warnings.
Diffstat (limited to 'src/format/format.h')
-rw-r--r--src/format/format.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/format/format.h b/src/format/format.h
index 915b62f..19c2b0a 100644
--- a/src/format/format.h
+++ b/src/format/format.h
@@ -80,19 +80,19 @@ GBinSymbol **g_binary_format_get_symbols(const GBinFormat *, size_t *);
char *create_string_label(GBinFormat *, const vmpa2t *, const char *, size_t);
/* Recherche le symbole correspondant à une étiquette. */
-bool g_binary_format_find_symbol_by_label(const GBinFormat *, const char *, GBinSymbol **);
+bool g_binary_format_find_symbol_by_label(GBinFormat *, const char *, GBinSymbol **);
/* Recherche le symbole correspondant à une adresse. */
-bool g_binary_format_find_symbol_at(const GBinFormat *, const vmpa2t *, GBinSymbol **);
+bool g_binary_format_find_symbol_at(GBinFormat *, const vmpa2t *, GBinSymbol **);
/* Recherche le symbole contenant une adresse. */
-bool g_binary_format_find_symbol_for(const GBinFormat *, const vmpa2t *, GBinSymbol **);
+bool g_binary_format_find_symbol_for(GBinFormat *, const vmpa2t *, GBinSymbol **);
/* Recherche le symbole suivant celui lié à une adresse. */
-bool g_binary_format_find_next_symbol_at(const GBinFormat *, const vmpa2t *, GBinSymbol **);
+bool g_binary_format_find_next_symbol_at(GBinFormat *, const vmpa2t *, GBinSymbol **);
/* Recherche le symbole correspondant à une adresse. */
-bool g_binary_format_resolve_symbol(const GBinFormat *, const vmpa2t *, GBinSymbol **, phys_t *);
+bool g_binary_format_resolve_symbol(GBinFormat *, const vmpa2t *, GBinSymbol **, phys_t *);
/* Fournit le prototype de toutes les routines détectées. */
GBinRoutine **g_binary_format_get_routines(const GBinFormat *, size_t *);