Vanilla.PDF  1.6.0
Cross-platform toolkit for creating and modifying PDF documents
c_resource_dictionary.h
Go to the documentation of this file.
1#ifndef _C_RESOURCE_DICTIONARY_H
2#define _C_RESOURCE_DICTIONARY_H
3
7
8#ifdef __cplusplus
9extern "C"
10{
11#endif
12
39 VANILLAPDF_API error_type CALLING_CONVENTION ResourceDictionary_GetFontMap(ResourceDictionaryHandle* handle, FontMapHandle** result);
40
44 VANILLAPDF_API error_type CALLING_CONVENTION ResourceDictionary_ToUnknown(ResourceDictionaryHandle* handle, IUnknownHandle** result);
45
49 VANILLAPDF_API error_type CALLING_CONVENTION ResourceDictionary_FromUnknown(IUnknownHandle* handle, ResourceDictionaryHandle** result);
50
55 VANILLAPDF_API error_type CALLING_CONVENTION ResourceDictionary_Release(ResourceDictionaryHandle* handle);
56
59#ifdef __cplusplus
60};
61#endif
62
63#endif /* _C_RESOURCE_DICTIONARY_H */
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.
A dictionary that maps resource names to font dictionaries.
Base class for reference counting.
A content stream's named resources shall be defined by a resource dictionary, which shall enumerate t...
error_type CALLING_CONVENTION ResourceDictionary_GetFontMap(ResourceDictionaryHandle *handle, FontMapHandle **result)
A dictionary that maps resource names to font dictionaries.
error_type CALLING_CONVENTION ResourceDictionary_Release(ResourceDictionaryHandle *handle)
Decrement the internal reference counter.
error_type CALLING_CONVENTION ResourceDictionary_FromUnknown(IUnknownHandle *handle, ResourceDictionaryHandle **result)
Convert IUnknownHandle to ResourceDictionaryHandle.
error_type CALLING_CONVENTION ResourceDictionary_ToUnknown(ResourceDictionaryHandle *handle, IUnknownHandle **result)
Reinterpret current object as IUnknownHandle.
uint32_t error_type
This is return value type of all API functions.
Definition: c_types.h:25