ReactOS 0.4.15-dev-7924-g5949c20
svpfr.h File Reference

Go to the source code of this file.

Macros

#define FT_SERVICE_ID_PFR_METRICS   "pfr-metrics"
 

Typedefs

typedef FT_Error(* FT_PFR_GetMetricsFunc) (FT_Face face, FT_UInt *aoutline, FT_UInt *ametrics, FT_Fixed *ax_scale, FT_Fixed *ay_scale)
 
typedef FT_Error(* FT_PFR_GetKerningFunc) (FT_Face face, FT_UInt left, FT_UInt right, FT_Vector *avector)
 
typedef FT_Error(* FT_PFR_GetAdvanceFunc) (FT_Face face, FT_UInt gindex, FT_Pos *aadvance)
 

Functions

 FT_DEFINE_SERVICE (PfrMetrics)
 

Macro Definition Documentation

◆ FT_SERVICE_ID_PFR_METRICS

#define FT_SERVICE_ID_PFR_METRICS   "pfr-metrics"

Definition at line 29 of file svpfr.h.

Typedef Documentation

◆ FT_PFR_GetAdvanceFunc

typedef FT_Error(* FT_PFR_GetAdvanceFunc) (FT_Face face, FT_UInt gindex, FT_Pos *aadvance)

Definition at line 45 of file svpfr.h.

◆ FT_PFR_GetKerningFunc

typedef FT_Error(* FT_PFR_GetKerningFunc) (FT_Face face, FT_UInt left, FT_UInt right, FT_Vector *avector)

Definition at line 39 of file svpfr.h.

◆ FT_PFR_GetMetricsFunc

typedef FT_Error(* FT_PFR_GetMetricsFunc) (FT_Face face, FT_UInt *aoutline, FT_UInt *ametrics, FT_Fixed *ax_scale, FT_Fixed *ay_scale)

Definition at line 32 of file svpfr.h.

Function Documentation

◆ FT_DEFINE_SERVICE()

FT_DEFINE_SERVICE ( PfrMetrics  )

Definition at line 51 of file svpfr.h.

52 {
53 FT_PFR_GetMetricsFunc get_metrics;
54 FT_PFR_GetKerningFunc get_kerning;
55 FT_PFR_GetAdvanceFunc get_advance;
56
57 };
FT_Error(* FT_PFR_GetKerningFunc)(FT_Face face, FT_UInt left, FT_UInt right, FT_Vector *avector)
Definition: svpfr.h:40
FT_Error(* FT_PFR_GetMetricsFunc)(FT_Face face, FT_UInt *aoutline, FT_UInt *ametrics, FT_Fixed *ax_scale, FT_Fixed *ay_scale)
Definition: svpfr.h:33
FT_Error(* FT_PFR_GetAdvanceFunc)(FT_Face face, FT_UInt gindex, FT_Pos *aadvance)
Definition: svpfr.h:46