summaryrefslogtreecommitdiff
path: root/src/analysis/line-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/line-int.h')
-rw-r--r--src/analysis/line-int.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/analysis/line-int.h b/src/analysis/line-int.h
index 9c8e52a..e240815 100644
--- a/src/analysis/line-int.h
+++ b/src/analysis/line-int.h
@@ -43,6 +43,8 @@ struct _GRenderingLine
vmpa_t offset; /* Position en mémoire/physique*/
off_t length; /* Nombre d'adresses associées */
+ char *comment; /* Texte à afficher */
+
RenderingLineType type; /* Type de représentation */
RenderingLineFlag flags; /* Extension d'informations */
@@ -57,6 +59,7 @@ struct _GRenderingLine
#define lines_list_last(head) dl_list_last(head, GRenderingLine, link)
#define lines_list_next_iter(iter, head) dl_list_next_iter(iter, head, GRenderingLine, link)
+#define lines_list_prev_iter(iter, head) dl_list_prev_iter(iter, head, GRenderingLine, link)
#define lines_list_add_before(new, head, pos) dl_list_add_before(new, head, pos, link)
#define lines_list_add_tail(new, head) dl_list_add_tail(new, head, GRenderingLine, link)
#define lines_list_for_each(pos, head) dl_list_for_each(pos, head, GRenderingLine, link)