summaryrefslogtreecommitdiff
path: root/src/analysis/exporter-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-03-21 18:54:20 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-03-21 18:54:20 (GMT)
commit8123d9342f92a2cf6fd999b350252c001f403092 (patch)
tree5030aa5d40fa8551937649cdd3377062ec8991d0 /src/analysis/exporter-int.h
parenta6acb5629572e6da4d72f4419b01672c2ea5ddf2 (diff)
Allowed a simple export of an assembly content.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@144 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/exporter-int.h')
-rw-r--r--src/analysis/exporter-int.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/analysis/exporter-int.h b/src/analysis/exporter-int.h
index 097b48b..4219be2 100644
--- a/src/analysis/exporter-int.h
+++ b/src/analysis/exporter-int.h
@@ -29,6 +29,9 @@
+/* Ajoute du texte simple à un fichier ouvert en écriture. */
+typedef void (* add_text_fc) (GContentExporter *, GRenderingOptions *, MainRendering, FILE *);
+
/* Ajoute à un texte GTK le contenu de la ligne de rendu. */
typedef void (* add_to_gtk_buffer_fc) (GContentExporter *, MainRendering, GtkTextBuffer *, GtkTextIter *, size_t [SAR_COUNT]);
@@ -42,6 +45,7 @@ struct _GContentExporter
{
GObject parent; /* A laisser en premier */
+ add_text_fc add_text; /* Remplissage simple */
add_to_gtk_buffer_fc add_to_gtk_buffer; /* Constitution du texte GTK */
add_arch_to_gtk_buffer_fc add_arch_to_gtk_buffer; /* Constitution... */
@@ -59,6 +63,9 @@ struct _GContentExporterClass
};
+/* Ajoute du texte simple à un fichier ouvert en écriture. */
+void g_content_exporter_insert_text(GContentExporter *, FILE *, const char *, size_t, RenderingTagType);
+
/* Ajoute du texte à un texte GTK via l'instance spécifiée. */
void g_content_exporter_insert_with_gtk_tag(GContentExporter *, GtkTextBuffer *, GtkTextIter *, const char *, size_t, RenderingTagType);