23#include FT_INTERNAL_PIC_H
26#ifndef FT_CONFIG_OPTION_PIC
28#define TT_SERVICES_GET tt_services
29#define TT_SERVICE_GX_MULTI_MASTERS_GET tt_service_gx_multi_masters
30#define TT_SERVICE_METRICS_VARIATIONS_GET tt_service_metrics_variations
31#define TT_SERVICE_TRUETYPE_GLYF_GET tt_service_truetype_glyf
32#define TT_SERVICE_PROPERTIES_GET tt_service_properties
36#include FT_MULTIPLE_MASTERS_H
37#include FT_SERVICE_MULTIPLE_MASTERS_H
38#include FT_SERVICE_METRICS_VARIATIONS_H
39#include FT_SERVICE_TRUETYPE_GLYF_H
40#include FT_SERVICE_PROPERTIES_H
45 typedef struct TTModulePIC_
48#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT
49 FT_Service_MultiMastersRec tt_service_gx_multi_masters;
50 FT_Service_MetricsVariationsRec tt_service_metrics_variations;
52 FT_Service_TTGlyfRec tt_service_truetype_glyf;
53 FT_Service_PropertiesRec tt_service_properties;
58#define GET_PIC( lib ) \
59 ( (TTModulePIC*)((lib)->pic_container.truetype) )
60#define TT_SERVICES_GET \
61 ( GET_PIC( library )->tt_services )
62#define TT_SERVICE_METRICS_VARIATIONS_GET \
63 ( GET_PIC( library )->tt_service_metrics_variations )
64#define TT_SERVICE_GX_MULTI_MASTERS_GET \
65 ( GET_PIC( library )->tt_service_gx_multi_masters )
66#define TT_SERVICE_TRUETYPE_GLYF_GET \
67 ( GET_PIC( library )->tt_service_truetype_glyf )
68#define TT_SERVICE_PROPERTIES_GET \
69 ( GET_PIC( library )->tt_service_properties )