summaryrefslogtreecommitdiff
path: root/src/cos_object.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2018-01-31 00:03:38 +0000
committerVincent Sanders <vince@kyllikki.org>2018-01-31 00:03:38 +0000
commit1ca90f384d4f2311cbf0abd44d8e4e5b7a4abb37 (patch)
tree35a931f40ed6ca1a1e2420ab1f63230f05349ca1 /src/cos_object.h
parent6b16f2446bb381be3de54d9edfe9088a8363df70 (diff)
downloadlibnspdf-1ca90f384d4f2311cbf0abd44d8e4e5b7a4abb37.tar.gz
libnspdf-1ca90f384d4f2311cbf0abd44d8e4e5b7a4abb37.tar.bz2
start actual page rendering
Diffstat (limited to 'src/cos_object.h')
-rw-r--r--src/cos_object.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/cos_object.h b/src/cos_object.h
index 79a1c8d..632126e 100644
--- a/src/cos_object.h
+++ b/src/cos_object.h
@@ -19,6 +19,7 @@
struct nspdf_doc;
struct content_operation;
+struct cos_content;
enum cos_type {
COS_TYPE_NULL, /* 0 */
@@ -78,16 +79,6 @@ struct cos_reference {
};
-/**
- * Synthetic parsed content object.
- *
- */
-struct cos_content {
- unsigned int length; /**< number of content operations */
- unsigned int alloc; /**< number of allocated operations */
- struct content_operation *operations;
-};
-
struct cos_object {
enum cos_type type;
union {