summaryrefslogtreecommitdiff
path: root/src/glibext/gcodebuffer.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-07-14 09:49:51 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-07-14 09:49:51 (GMT)
commit9371129c1b7aa830ed889abd4481cb505d90c4a7 (patch)
tree579dd07fc31bab09c30e0dcdc60a356d5eaac99e /src/glibext/gcodebuffer.h
parent412f9fd31e625dbb2b00c25b6cc6b4753acd409d (diff)
Indented the output of decompilations.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@249 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/glibext/gcodebuffer.h')
-rw-r--r--src/glibext/gcodebuffer.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/glibext/gcodebuffer.h b/src/glibext/gcodebuffer.h
index 3fc6155..1cac790 100644
--- a/src/glibext/gcodebuffer.h
+++ b/src/glibext/gcodebuffer.h
@@ -62,6 +62,12 @@ GCodeBuffer *g_code_buffer_new(void);
/* Ajoute une nouvelle ligne à un tampon pour code désassemblé. */
GBufferLine *g_code_buffer_append_new_line(GCodeBuffer *, vmpa_t);
+/* Augmente l'indentation des prochaines lignes. */
+void g_code_buffer_inc_indentation(GCodeBuffer *);
+
+/* Diminue l'indentation des prochaines lignes. */
+void g_code_buffer_dec_indentation(GCodeBuffer *);
+
/* Traitement d'une ligne parcourue. */
typedef bool (* process_line_fc) (GCodeBuffer *, GBufferLine *, void *);