summaryrefslogtreecommitdiff
path: root/src/analysis/binary.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-01-14 16:06:42 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-01-14 16:06:42 (GMT)
commit2ad11520c0bfefd68a89689497752983792a96ba (patch)
tree9271a1bd90bd58f49b8a68c41b348639f67fb559 /src/analysis/binary.h
parentd90aa93fc202fdf1ba4e4e7e799ce8d7e4632b7f (diff)
Updated calls to take the binary rendering options into account.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@225 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/binary.h')
-rw-r--r--src/analysis/binary.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/analysis/binary.h b/src/analysis/binary.h
index 4f9c034..63a9e61 100644
--- a/src/analysis/binary.h
+++ b/src/analysis/binary.h
@@ -2,7 +2,7 @@
/* OpenIDA - Outil d'analyse de fichiers binaires
* binary.h - prototypes pour le traitement des flots de code binaire
*
- * Copyright (C) 2008-2010 Cyrille Bagard
+ * Copyright (C) 2008-2012 Cyrille Bagard
*
* This file is part of OpenIDA.
*
@@ -112,9 +112,18 @@ GArchInstruction *g_openida_binary_get_instructions(const GOpenidaBinary *);
/* Fournit le tampon associé au contenu assembleur d'un binaire. */
GCodeBuffer *g_openida_binary_get_disassembled_buffer(const GOpenidaBinary *);
+/* Indique si les adresses doivent apparaître dans le rendu. */
+bool *g_openida_binary_display_addresses_in_text(const GOpenidaBinary *);
+
+/* Indique si le code doit apparaître dans le rendu. */
+bool *g_openida_binary_display_code_in_text(const GOpenidaBinary *);
+
/* Fournit le tampon associé au contenu d'un fichier source. */
GCodeBuffer *g_openida_binary_get_decompiled_buffer(const GOpenidaBinary *, size_t);
+/* Indique si les lignes doivent apparaître dans le rendu. */
+bool *g_openida_binary_display_decomp_lines(const GOpenidaBinary *);
+
/* ------------------------------ ELEMENTS DE DEBOGAGE ------------------------------ */