diff options
Diffstat (limited to 'source')
-rw-r--r-- | source/fitz/document.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source/fitz/document.c b/source/fitz/document.c index 4bde820c..ad2e84ba 100644 --- a/source/fitz/document.c +++ b/source/fitz/document.c @@ -180,6 +180,13 @@ fz_load_outline(fz_document *doc) return NULL; } +void +fz_layout_document(fz_document *doc, float w, float h, float em) +{ + if (doc && doc->layout) + doc->layout(doc, w, h, em); +} + int fz_count_pages(fz_document *doc) { |