Index: view.h =================================================================== --- view.h (revision 30856) +++ view.h (revision 30857) @@ -63,6 +63,8 @@ pcb_coord_t x, y; /* optional: a coord to mark on the preview */ pcb_idpath_list_t objs[2]; /* optional: two groups of objects to highlight on preview */ + gds_t long_desc; /* optional: if non-empty, description shall point to long_desc.array */ + pcb_view_type_t data_type; union { struct { @@ -143,4 +145,10 @@ /* call after the last item or to cancel the load */ void pcb_view_load_end(void *load_ctx); +/*** utility ***/ + +/* append txt to description */ +void pcb_drc_append_text(pcb_view_t *view, const char *txt); + + #endif