This file contains macro declarations for importing and exporting symbols from library boundaries.
This file contains all type forward declarations returned by the library API.
This file contains class definitions for PDFVersion.
This file contains types and constants used as parameters or return values.
Represents memory stored data.
Represents encryption key other than password.
Represents low-level file access handle.
error_type CALLING_CONVENTION File_GetFilename(FileHandle *handle, BufferHandle **result)
Get ASCII representation the name of the current file on the physical filesystem.
error_type CALLING_CONVENTION File_Create(string_type filename, FileHandle **result)
Creates a file for writing.
error_type CALLING_CONVENTION File_AllocateNewEntry(FileHandle *handle, XrefUsedEntryHandle **result)
Find exact object within all xref tables.
error_type CALLING_CONVENTION File_GetIndirectObject(FileHandle *handle, biguint_type obj_number, ushort_type gen_number, ObjectHandle **result)
Find exact object within all xref tables.
error_type CALLING_CONVENTION File_OpenStream(InputOutputStreamHandle *input_stream, string_type name, FileHandle **result)
Opens an input stream for reading.
error_type CALLING_CONVENTION File_IsEncrypted(FileHandle *handle, boolean_type *result)
Determine if file is encrypted.
error_type CALLING_CONVENTION File_SetEncryptionKey(FileHandle *handle, EncryptionKeyHandle *key)
Set files encryption key.
error_type CALLING_CONVENTION File_GetVersion(FileHandle *handle, PDFVersion *result)
The version of the PDF specification to which the document conforms.
error_type CALLING_CONVENTION File_CreateStream(InputOutputStreamHandle *input_stream, string_type name, FileHandle **result)
Uses arbitrary stream as a file.
error_type CALLING_CONVENTION File_XrefChain(FileHandle *handle, XrefChainHandle **result)
Get chain of xref tables for iteration.
error_type CALLING_CONVENTION File_Release(FileHandle *handle)
Decrement the internal reference counter.
error_type CALLING_CONVENTION File_Open(string_type filename, FileHandle **result)
Opens a file for reading.
error_type CALLING_CONVENTION File_FromUnknown(IUnknownHandle *handle, FileHandle **result)
Convert IUnknownHandle to FileHandle.
error_type CALLING_CONVENTION File_Initialize(FileHandle *handle)
Perform basic intialization.
error_type CALLING_CONVENTION File_ToUnknown(FileHandle *handle, IUnknownHandle **result)
Reinterpret current object as IUnknownHandle.
error_type CALLING_CONVENTION File_SetEncryptionPassword(FileHandle *handle, string_type password)
Set encryption password.
Base class for reference counting.
Base class for syntactic tokens.
An ordered collection of all XrefHandle within the PDF file.
Represents used entry within cross-reference section.
uint32_t error_type
This is return value type of all API functions.
Definition c_types.h:25
uint64_t biguint_type
64-bit unsigned integer type
Definition c_types.h:77
uint16_t ushort_type
16-bit unsigned integer
Definition c_types.h:46
int8_t boolean_type
Boolean type supported in C.
Definition c_types.h:31
const char * string_type
C-Style string.
Definition c_types.h:82
PDFVersion
Range of available PDF versions.
Definition c_pdf_version.h:22