summaryrefslogtreecommitdiff
path: root/src/cos_object.h
diff options
context:
space:
mode:
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