aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/narrative.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2020-01-13 00:06:05 +0100
committerThomas White <taw@bitwiz.me.uk>2020-01-13 00:17:50 +0100
commit1f2629403b9d62ecf44420f789b5c679a8ae1c98 (patch)
tree42f9c50056c089f9d70554dcdae626ffd8f552f1 /libstorycode/narrative.h
parent7304e278ced9adee5884482bbf3223f8ba1ccfde (diff)
Add segment start/end markers
Diffstat (limited to 'libstorycode/narrative.h')
-rw-r--r--libstorycode/narrative.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libstorycode/narrative.h b/libstorycode/narrative.h
index 599318e..54ad380 100644
--- a/libstorycode/narrative.h
+++ b/libstorycode/narrative.h
@@ -56,8 +56,9 @@ extern int narrative_item_is_text(Narrative *n, int item);
extern void narrative_add_text(Narrative *n, struct text_run *runs, int n_runs);
extern void narrative_add_bp(Narrative *n, struct text_run *runs, int n_runs);
-
+extern void narrative_add_segstart(Narrative *n, struct text_run *runs, int n_runs);
extern void narrative_add_prestitle(Narrative *n, struct text_run *runs, int n_runs);
+extern void narrative_add_segend(Narrative *n);
extern void narrative_add_slide(Narrative *n, Slide *slide);
extern void narrative_add_eop(Narrative *n);