/* OpenIDA - Outil d'analyse de fichiers binaires * line-int.h - prototypes pour la traduction humaine des lignes de rendus * * Copyright (C) 2009 Cyrille Bagard * * This file is part of OpenIDA. * * OpenIDA is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * OpenIDA is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Foobar. If not, see . */ #ifndef _ANALYSIS_EXPORTER_INT_H #define _ANALYSIS_EXPORTER_INT_H #include "exporter.h" /* Ajoute à un texte GTK le contenu de la ligne de rendu. */ typedef void (* add_to_gtk_buffer_fc) (GContentExporter *, MainRendering, GtkTextBuffer *, GtkTextIter *, gint [SAR_COUNT]); /* Traduit une instruction en version humainement lisible. */ typedef void (* add_arch_to_gtk_buffer_fc) (const GContentExporter *, const GExeFormat *, AsmSyntax, GtkTextBuffer *, GtkTextIter *); /* Exportation de contenu (instance) */ struct _GContentExporter { GObject parent; /* A laisser en premier */ 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... */ }; /* Exportation de contenu (classe) */ struct _GContentExporterClass { GObjectClass parent; /* A laisser en premier */ GtkTextTag *tags[RTT_COUNT]; /* Décorateurs pour les textes */ }; /* 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); #endif /* _ANALYSIS_EXPORTER_INT_H */