summaryrefslogtreecommitdiff
path: root/src/analysis/prototype.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-03-11 22:59:46 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-03-11 22:59:46 (GMT)
commitc4231094c9c77c685371d726d28e65c0459486de (patch)
tree2d4bb57239cb46bd2b1194c853c3a7263e487455 /src/analysis/prototype.h
parent29a22c425f492427f45b71de937f2d99587c8d34 (diff)
Inserted comments into disassembled code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@53 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/prototype.h')
-rw-r--r--src/analysis/prototype.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/analysis/prototype.h b/src/analysis/prototype.h
index f86d541..891f294 100644
--- a/src/analysis/prototype.h
+++ b/src/analysis/prototype.h
@@ -25,6 +25,9 @@
#define _ANALYSIS_PROTOTYPE_H
+#include <stdint.h>
+
+
#include "variable.h"
@@ -49,6 +52,12 @@ bin_routine *create_binary_routine(void);
/* Supprime une représentation de routine de la mémoire. */
void delete_binary_routine(bin_routine *);
+/* Définit la position physique / en mémoire d'une routine. */
+void set_binary_routine_offset(bin_routine *, uint64_t);
+
+/* Fournit la position physique / en mémoire d'une routine. */
+uint64_t get_binary_routine_offset(const bin_routine *);
+
/* Définit le type d'une routine. */
void set_binary_routine_type(bin_routine *, RoutineType);