/* OpenIDA - Outil d'analyse de fichiers binaires * line.h - prototypes pour la représentation des lignes de rendu * * Copyright (C) 2008 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_LINE_H #define _ANALYSIS_LINE_H #include /* Définitions des types de ligne */ typedef enum _RenderingLineType { RLT_PROLOGUE /* Description de l'analyse */ } RenderingLineType; /* Ligne de représentation générique */ typedef struct _rendering_line rendering_line; /* Ajoute une ligne à un ensemble existant. */ void add_line_to_rendering_lines(rendering_line **, rendering_line *); /* Procède à l'initialisation des bases d'une représentation. */ void draw_rendering_line(rendering_line *, GdkDrawable *, GdkGC *, gint, gint); /* ------------------------- LIGNE EN TETE DE DESASSEMBLAGE ------------------------- */ /* Choisit d'afficher le code brut ou non. */ rendering_line *create_prologue_line(const char *); #endif /* _ANALYSIS_LINE_H */