summaryrefslogtreecommitdiff
path: root/src/cos_object.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2018-01-08 22:10:32 +0000
committerVincent Sanders <vince@kyllikki.org>2018-01-08 22:10:32 +0000
commit615323e574ffcecd8525711c39beffcac4156624 (patch)
tree8d1883b3d789def986a2cce25b97991ac2940985 /src/cos_object.h
parent119b565de393fdd797e1a3c4f629c936092e9091 (diff)
downloadlibnspdf-615323e574ffcecd8525711c39beffcac4156624.tar.gz
libnspdf-615323e574ffcecd8525711c39beffcac4156624.tar.bz2
fix header guards and copyright notices
Diffstat (limited to 'src/cos_object.h')
-rw-r--r--src/cos_object.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/cos_object.h b/src/cos_object.h
index 8d0f910..b90ef15 100644
--- a/src/cos_object.h
+++ b/src/cos_object.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright 2018 Vincent Sanders <vince@netsurf-browser.org>
+ *
+ * This file is part of libnspdf.
+ *
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ */
+
+/**
+ * \file
+ * NetSurf PDF library COS objects
+ */
+
+#ifndef NSPDF__COS_OBJECT_H_
+#define NSPDF__COS_OBJECT_H_
+
struct nspdf_doc;
enum cos_type {
@@ -240,3 +257,6 @@ nspdferror cos_get_array(struct nspdf_doc *doc, struct cos_object *cobj, struct
* NSERROR_TYPE if the \p cobj is not a array
*/
nspdferror cos_get_stream(struct nspdf_doc *doc, struct cos_object *cobj, struct cos_stream **stream_out);
+
+
+#endif