36 lines
627 B
C
36 lines
627 B
C
#ifndef MUPDF_PDF_H
|
|
#define MUPDF_PDF_H
|
|
|
|
#include "mupdf/fitz.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "mupdf/pdf/object.h"
|
|
#include "mupdf/pdf/document.h"
|
|
#include "mupdf/pdf/parse.h"
|
|
#include "mupdf/pdf/xref.h"
|
|
#include "mupdf/pdf/crypt.h"
|
|
|
|
#include "mupdf/pdf/page.h"
|
|
#include "mupdf/pdf/resource.h"
|
|
#include "mupdf/pdf/cmap.h"
|
|
#include "mupdf/pdf/font.h"
|
|
#include "mupdf/pdf/interpret.h"
|
|
|
|
#include "mupdf/pdf/annot.h"
|
|
#include "mupdf/pdf/form.h"
|
|
#include "mupdf/pdf/event.h"
|
|
#include "mupdf/pdf/javascript.h"
|
|
|
|
#include "mupdf/pdf/output-pdf.h"
|
|
|
|
#include "mupdf/pdf/clean.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|