summaryrefslogtreecommitdiff
path: root/include
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 /include
parent434f6c3fe7d1d2c6a3e6ae6338608a4a4421ab1b (diff)
downloadnetsurf-399d7189f21ad41bd80e11d5ff8da4037edfc1c2.tar.gz
netsurf-399d7189f21ad41bd80e11d5ff8da4037edfc1c2.tar.bz2
Add initial content handler for PDF format
Diffstat (limited to 'include')
-rw-r--r--include/netsurf/content_type.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/netsurf/content_type.h b/include/netsurf/content_type.h
index 0a6b83009..c6c8478cd 100644
--- a/include/netsurf/content_type.h
+++ b/include/netsurf/content_type.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
*
* This file is part of NetSurf, http://www.netsurf-browser.org/
*
@@ -78,8 +78,11 @@ typedef enum {
/** All script types. */
CONTENT_SCRIPT = 0x40,
+ /** Portable Document Format. */
+ CONTENT_PDF = 0x80,
+
/** Any content matches */
- CONTENT_ANY = 0x7f
+ CONTENT_ANY = 0xff
} content_type;