summaryrefslogtreecommitdiff
path: root/src/decomp/output-int.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-int.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-int.h')
-rw-r--r--src/decomp/output-int.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/decomp/output-int.h b/src/decomp/output-int.h
index 8aae974..885d9ca 100644
--- a/src/decomp/output-int.h
+++ b/src/decomp/output-int.h
@@ -29,6 +29,9 @@
+/* Xxx. */
+typedef GBufferLine * (* rlgbuf_fc) (GLangOutput *, GCodeBuffer *);
+
/* Ajoute un commentaire à un tampon donné. */
typedef GBufferLine * (* write_comments_fc) (GLangOutput *, GCodeBuffer *, const char *, size_t);
@@ -51,6 +54,9 @@ struct _GLangOutput
{
GObject parent; /* A laisser en premier */
+ rlgbuf_fc start_comments; /* Plusieurs commentaires (#1) */
+ write_comments_fc cont_comments; /* Plusieurs commentaires (#2) */
+ rlgbuf_fc end_comments; /* Plusieurs commentaires (#3) */
write_comments_fc write_comments; /* Commentaires sur une ligne */
write_comp_sign_fc comp_sign; /* Méthde de comparaison */