pdf.h

changeset 133
76c197fe2eeb
parent 131
4b8c80d77f76
child 141
752599b50ff3
     1.1 diff -r ccf1c28a2940 -r 76c197fe2eeb pdf.h
     1.2 --- a/pdf.h	Fri Mar 14 08:56:38 2003 +0000
     1.3 +++ b/pdf.h	Fri Mar 14 08:57:40 2003 +0000
     1.4 @@ -2,7 +2,7 @@
     1.5   * tumble: build a PDF file from image files
     1.6   *
     1.7   * PDF routines
     1.8 - * $Id: pdf.h,v 1.10 2003/03/14 00:24:37 eric Exp $
     1.9 + * $Id: pdf.h,v 1.11 2003/03/14 00:57:40 eric Exp $
    1.10   * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
    1.11   *
    1.12   * This program is free software; you can redistribute it and/or modify
    1.13 @@ -30,15 +30,15 @@
    1.14  
    1.15  
    1.16  #define PDF_PAGE_MODE_USE_NONE     0
    1.17 -#define PDF_PAGE_MODE_USE_OUTLINES 1
    1.18 +#define PDF_PAGE_MODE_USE_OUTLINES 1  /* if no outlines, will use NONE */
    1.19  #define PDF_PAGE_MODE_USE_THUMBS   2  /* not yet implemented */
    1.20  
    1.21  
    1.22  void pdf_init (void);
    1.23  
    1.24 -pdf_file_handle pdf_create (char *filename, int page_mode);
    1.25 +pdf_file_handle pdf_create (char *filename);
    1.26  
    1.27 -void pdf_close (pdf_file_handle pdf_file);
    1.28 +void pdf_close (pdf_file_handle pdf_file, int page_mode);
    1.29  
    1.30  void pdf_set_author   (pdf_file_handle pdf_file, char *author);
    1.31  void pdf_set_creator  (pdf_file_handle pdf_file, char *author);