summaryrefslogtreecommitdiff
path: root/plugins/dwarf/form.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/dwarf/form.h')
-rw-r--r--plugins/dwarf/form.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/plugins/dwarf/form.h b/plugins/dwarf/form.h
index bdef9b3..ec1ce1a 100644
--- a/plugins/dwarf/form.h
+++ b/plugins/dwarf/form.h
@@ -25,9 +25,22 @@
#define _FORMAT_DWARF_FORM_H
-#include "dwarf_def.h"
+#include "format.h"
+#include <analysis/content.h>
+
+
+
+/* Valeurs dans DWARF */
+typedef union _dw_form_value dw_form_value;
+
+
+/* Lit la valeur correspondant à un type donné. */
+bool read_dwarf_form_value(const GDwarfFormat *, GBinContent *, vmpa2t *, const dw_compil_unit_header *, DwarfForm, dw_form_value **);
+
+/* Supprime de la mémoire une valeur correspondant à un type. */
+void free_dwarf_form_value(dw_form_value *);
/* Transcrit une valeur Dwarf brute en adresse virtuelle. */
bool translate_form_into_address(const dw_form_value *, DwarfForm, virt_t *);