aboutsummaryrefslogtreecommitdiff
path: root/src/sc_interp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sc_interp.h')
-rw-r--r--src/sc_interp.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/sc_interp.h b/src/sc_interp.h
index ad59193..05504f0 100644
--- a/src/sc_interp.h
+++ b/src/sc_interp.h
@@ -27,6 +27,8 @@
#include <config.h>
#endif
+#include <pango/pangocairo.h>
+
struct sc_font
{
@@ -40,12 +42,13 @@ struct sc_font
typedef struct _scinterp SCInterpreter;
-extern SCInterpreter *sc_interp_new(void);
+extern SCInterpreter *sc_interp_new(PangoContext *pc);
extern void sc_interp_destroy(SCInterpreter *scin);
extern void sc_interp_save(SCInterpreter *scin);
extern void sc_interp_restore(SCInterpreter *scin);
extern int sc_interp_add_blocks(SCInterpreter *scin, const SCBlock *bl);
+extern struct wrap_line *sc_interp_get_boxes(SCInterpreter *scin);
#endif /* SC_INTERP_H */