summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkbinview.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gtkext/gtkbinview.h')
-rw-r--r--src/gtkext/gtkbinview.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/gtkext/gtkbinview.h b/src/gtkext/gtkbinview.h
index 722d10d..a80cda3 100644
--- a/src/gtkext/gtkbinview.h
+++ b/src/gtkext/gtkbinview.h
@@ -28,7 +28,8 @@
#include <gtk/gtkwidget.h>
-#include <stdint.h>
+#include "../analysis/line.h"
+#include "../arch/archbase.h"
@@ -56,6 +57,12 @@ GtkWidget* gtk_binview_new(void);
+/* Définit les lignes à associer à la représentation. */
+void gtk_bin_view_set_rendering_lines(GtkBinview *, GRenderingLine *, GRenderingLine *);
+
+
+
+
/* Choisit d'afficher les adresses virtuelles ou non. */
void gtk_binview_show_vaddress(GtkBinview *, gboolean);
@@ -65,7 +72,7 @@ void gtk_binview_show_code(GtkBinview *, gboolean);
/* S'assure qu'une adresse donnée est visible à l'écran. */
-void gtk_binview_scroll_to_address(GtkBinview *, uint64_t);
+void gtk_bin_view_scroll_to_address(GtkBinview *, vmpa_t);