summaryrefslogtreecommitdiff
path: root/src/decomp/output.h
diff options
context:
space:
mode:
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);