summaryrefslogtreecommitdiff
path: root/src/decomp/output.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-12-20 00:28:36 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-12-20 00:28:36 (GMT)
commit56deaf395c65658102ef0111cfc072d65335331a (patch)
treeba6d6fd0dbc781e9ad3b3cf6b2eb529a7d7a6aa3 /src/decomp/output.h
parentd9fdfcf887a7a596a68db2500bb5e4d0b692abb6 (diff)
Begun to clean the code by moving the disassembling process into disass/.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@202 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/decomp/output.h')
-rw-r--r--src/decomp/output.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/decomp/output.h b/src/decomp/output.h
index 73e1e76..6a1c4a1 100644
--- a/src/decomp/output.h
+++ b/src/decomp/output.h
@@ -48,6 +48,15 @@ typedef struct _GLangOutputClass GLangOutputClass;
/* Indique le type défini pour une sortie de langage de programmation. */
GType g_lang_output_get_type(void);
+/* Marque le début d'une série de commentaires. */
+GBufferLine *g_lang_output_start_comments(GLangOutput *, GCodeBuffer *);
+
+/* Poursuit l'ajout d'une ligne de commentaires. */
+GBufferLine *g_lang_output_continue_comments(GLangOutput *, GCodeBuffer *, const char *, size_t);
+
+/* Marque la fin d'une série de commentaires. */
+GBufferLine *g_lang_output_end_comments(GLangOutput *, GCodeBuffer *);
+
/* Ajoute un commentaire à un tampon donné. */
GBufferLine *g_lang_output_write_comments(GLangOutput *, GCodeBuffer *, const char *, size_t);