summaryrefslogtreecommitdiff
path: root/src/gtkext/graph/cluster.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-12-30 23:41:52 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-12-30 23:41:52 (GMT)
commit4d9b68040b6147215947d5c5a0c67e9e478fba1c (patch)
tree4ea28a1ad045caafbe01fb48f47420c45ae9d254 /src/gtkext/graph/cluster.h
parentab3e5a58c2bde7802ba22cfad6113fe77bc86da4 (diff)
Saved first steps towards a new graph layout.
Diffstat (limited to 'src/gtkext/graph/cluster.h')
-rw-r--r--src/gtkext/graph/cluster.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gtkext/graph/cluster.h b/src/gtkext/graph/cluster.h
index 11ce66e..00c6d82 100644
--- a/src/gtkext/graph/cluster.h
+++ b/src/gtkext/graph/cluster.h
@@ -25,13 +25,15 @@
#define _GTKEXT_GRAPH_CLUSTER_H
-
#include "../gtkgraphdisplay.h"
#include "../../analysis/binary.h"
#include "../../analysis/disass/block.h"
+/* -------------------------- DEFINITION D'UN CHEF DE FILE -------------------------- */
+
+
#define G_TYPE_GRAPH_CLUSTER g_graph_cluster_get_type()
#define G_GRAPH_CLUSTER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), G_TYPE_GRAPH_CLUSTER, GGraphCluster))
#define G_IS_GRAPH_CLUSTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), G_TYPE_GRAPH_CLUSTER))
@@ -64,10 +66,11 @@ void g_graph_cluster_place(GGraphCluster *, GtkGraphDisplay *);
+/* ------------------------- CALCUL DE REPARTITION DE BLOCS ------------------------- */
-GGraphCluster *bootstrap_graph_cluster(GLoadedBinary *binary, const GBlockList *list, segcnt_list *highlighted);
-
+/* Construit un graphique à partir de blocs basiques. */
+GGraphCluster *bootstrap_graph_cluster(GLoadedBinary *, const GBlockList *, segcnt_list *);