summaryrefslogtreecommitdiff
path: root/content/handlers/pdf/pdf.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-12-31 00:05:28 +0000
committerVincent Sanders <vince@kyllikki.org>2020-12-11 16:17:27 +0000
commit399d7189f21ad41bd80e11d5ff8da4037edfc1c2 (patch)
treed33b460100416c64630d1006a0a8aaf86bd58d5e /content/handlers/pdf/pdf.h
parent434f6c3fe7d1d2c6a3e6ae6338608a4a4421ab1b (diff)
downloadnetsurf-399d7189f21ad41bd80e11d5ff8da4037edfc1c2.tar.gz
netsurf-399d7189f21ad41bd80e11d5ff8da4037edfc1c2.tar.bz2
Add initial content handler for PDF format
Diffstat (limited to 'content/handlers/pdf/pdf.h')
-rw-r--r--content/handlers/pdf/pdf.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/content/handlers/pdf/pdf.h b/content/handlers/pdf/pdf.h
new file mode 100644
index 000000000..2171b80c2
--- /dev/null
+++ b/content/handlers/pdf/pdf.h
@@ -0,0 +1,29 @@
+/*
+ * Copyright 2018 Vincent Sanders <vince@netsurf-browser.org>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/**
+ * \file
+ * Interface for PDF content handler.
+ */
+
+#ifndef NETSURF_PDF_PDF_H_
+#define NETSURF_PDF_PDF_H_
+
+nserror nspdf_init(void);
+
+#endif