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 types and constants used as parameters or return values.
Base class for reference counting.
Base class for syntactic tokens.
The leaves of the page tree are page objects, each of which is a dictionary specifying the attributes...
The pages of a document are accessed through a structure known as the page tree, which defines the or...
error_type CALLING_CONVENTION PageTree_ToUnknown(PageTreeHandle *handle, IUnknownHandle **result)
Reinterpret current object as IUnknownHandle.
error_type CALLING_CONVENTION PageTree_Release(PageTreeHandle *handle)
Decrement the internal reference counter.
error_type CALLING_CONVENTION PageTree_FromUnknown(IUnknownHandle *handle, PageTreeHandle **result)
Convert IUnknownHandle to PageTreeHandle.
error_type CALLING_CONVENTION PageTree_AppendPage(PageTreeHandle *handle, PageObjectHandle *page)
Adds a new page at the end of the page tree, after its current last element.
error_type CALLING_CONVENTION PageTree_RemovePage(PageTreeHandle *handle, size_type at)
Removed a page at the 1-based index at.
error_type CALLING_CONVENTION PageTree_InsertPage(PageTreeHandle *handle, size_type at, PageObjectHandle *page)
Insert new page at the 1-based index at.
error_type CALLING_CONVENTION PageTree_GetPageCount(PageTreeHandle *handle, size_type *result)
Get total number of pages in current document.
error_type CALLING_CONVENTION PageTree_GetPage(PageTreeHandle *handle, size_type at, PageObjectHandle **result)
Get page at the 1-based index at.
error_type CALLING_CONVENTION PageTree_WarmPageCache(PageTreeHandle *handle)
Pre-warm the page cache by walking the entire page tree once.
error_type CALLING_CONVENTION PageTree_FindPageIndex(PageTreeHandle *handle, ObjectHandle *page_ref, size_type *result)
Find the 1-based page index for a given page dictionary object.
uint32_t error_type
This is return value type of all API functions.
Definition c_types.h:25
uint32_t size_type
Size type defined in standard library.
Definition c_types.h:62