summaryrefslogtreecommitdiff
path: root/src/format/symbol.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-12-30 10:38:52 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-12-30 10:38:52 (GMT)
commit932ea7c83c07d3982fee605c6dd9895fd2753874 (patch)
tree766ad53bab9e3e3005334c30e823493de8e84168 /src/format/symbol.h
parent1b5d39bfbc48c33a0ea0924b60e48448c8b45dd4 (diff)
Rewritten the line buffers using generators and on-demand building to save memory.
Diffstat (limited to 'src/format/symbol.h')
-rw-r--r--src/format/symbol.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/format/symbol.h b/src/format/symbol.h
index 78741cb..e73bb27 100644
--- a/src/format/symbol.h
+++ b/src/format/symbol.h
@@ -32,9 +32,13 @@
#include "../analysis/db/item.h"
#include "../analysis/db/items/comment.h"
#include "../arch/instruction.h"
+#include "../glibext/linegen.h"
+/* --------------------- FONCTIONNALITES BASIQUES POUR SYMBOLES --------------------- */
+
+
/* Types de symbole */
typedef enum _SymbolType
{
@@ -164,4 +168,12 @@ GDbComment *g_binary_symbol_get_comment(const GBinSymbol *);
+/* ------------------------ OFFRE DE CAPACITES DE GENERATION ------------------------ */
+
+
+/* Détermine si un symbole pour faire office de générateur. */
+GLineGenerator *g_binary_symbol_produce_label(GBinSymbol *);
+
+
+
#endif /* _FORMAT_SYMBOL_H */