diff options
Diffstat (limited to 'src/gtksnippet.h')
-rw-r--r-- | src/gtksnippet.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gtksnippet.h b/src/gtksnippet.h index e66eedc..349fd20 100644 --- a/src/gtksnippet.h +++ b/src/gtksnippet.h @@ -69,6 +69,8 @@ typedef struct _code_line_info asm_instr *instr; /* Eventuelle instruction */ char *comment; /* Eventuel commentaire */ + gboolean bp_set; /* Point d'arrêt défini */ + } code_line_info; @@ -80,6 +82,7 @@ struct _GtkSnippet { PangoLayout *layout; /* Moteur de rendu du code ASM */ GdkGC *gc; /* Contexte graphique du rendu */ + int line_height; /* Hauteur maximale des lignes */ const asm_processor *proc; /* Architecture utilisée */ code_line_info *info; /* Contenu à représenter */ |