Vanilla.PDF  1.3.0
Cross-platform toolkit for creating and modifying PDF documents
c_font_map.h
Go to the documentation of this file.
1 #ifndef _C_FONT_MAP_H
2 #define _C_FONT_MAP_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 
35  VANILLAPDF_API error_type CALLING_CONVENTION FontMap_Contains(FontMapHandle* handle, const NameObjectHandle* key_handle, boolean_type* result);
36 
40  VANILLAPDF_API error_type CALLING_CONVENTION FontMap_Find(FontMapHandle* handle, const NameObjectHandle* key_handle, FontHandle** result);
41 
46  VANILLAPDF_API error_type CALLING_CONVENTION FontMap_Release(FontMapHandle* handle);
47 
50 #ifdef __cplusplus
51 };
52 #endif
53 
54 #endif /* _C_FONT_MAP_H */
Base class for all fonts in to representable inside a PDF document.
A dictionary that maps resource names to font dictionaries.
This file contains all type forward declarations returned by the library API.
error_type FontMap_Contains(FontMapHandle *handle, const NameObjectHandle *key_handle, boolean_type *result)
Determine if collection contains key key_handle.
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...
error_type FontMap_Find(FontMapHandle *handle, const NameObjectHandle *key_handle, FontHandle **result)
Find mapped value for key key_handle.
This file contains types and constants used as parameters or return values.
Represents unique name references in document.
error_type FontMap_Release(FontMapHandle *handle)
Decrement the internal reference counter.
int8_t boolean_type
Boolean type supported in C.
Definition: c_types.h:31