Vanilla.PDF  1.3.0
Cross-platform toolkit for creating and modifying PDF documents
c_contents.h
Go to the documentation of this file.
1 #ifndef _C_CONTENTS_H
2 #define _C_CONTENTS_H
3 
4 #include "vanillapdf/c_export.h"
5 #include "vanillapdf/c_handles.h"
6 #include "vanillapdf/c_values.h"
7 
8 #ifdef __cplusplus
9 extern "C"
10 {
11 #endif
12 
37  VANILLAPDF_API error_type CALLING_CONVENTION Contents_GetInstructionsSize(ContentsHandle* handle, size_type* result);
38 
42  VANILLAPDF_API error_type CALLING_CONVENTION Contents_GetInstructionAt(ContentsHandle* handle, size_type at, ContentInstructionHandle** result);
43 
48  VANILLAPDF_API error_type CALLING_CONVENTION Contents_Release(ContentsHandle* handle);
49 
52 #ifdef __cplusplus
53 };
54 #endif
55 
56 #endif /* _C_CONTENTS_H */
error_type Contents_Release(ContentsHandle *handle)
Decrement the internal reference counter.
error_type Contents_GetInstructionAt(ContentsHandle *handle, size_type at, ContentInstructionHandle **result)
Get instruction at location at.
This file contains all type forward declarations returned by the library API.
A content stream is a PDF stream object whose data consists of a sequence of instructions describing ...
uint32_t size_type
Size type defined in standard library.
Definition: c_types.h:62
error_type Contents_GetInstructionsSize(ContentsHandle *handle, size_type *result)
Return size of a collection.
Base class for all content objects and operations.
uint32_t error_type
This is return value type of all API functions.
Definition: c_types.h:25
This file contains macro declarations for importing and exporting symbols from library boundaries...
This file contains types and constants used as parameters or return values.