ReactOS 0.4.16-dev-2354-g16de117
ftsnames.c File Reference
Include dependency graph for ftsnames.c:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

 FT_Get_Sfnt_Name_Count (FT_Face face)
 
 FT_Get_Sfnt_Name (FT_Face face, FT_UInt idx, FT_SfntName *aname)
 
 FT_Get_Sfnt_LangTag (FT_Face face, FT_UInt langID, FT_SfntLangTag *alangTag)
 

Function Documentation

◆ FT_Get_Sfnt_LangTag()

FT_Get_Sfnt_LangTag ( FT_Face  face,
FT_UInt  langID,
FT_SfntLangTag alangTag 
)

Definition at line 170 of file ftsnames.c.

173 {
174 FT_UNUSED( face );
175 FT_UNUSED( langID );
176 FT_UNUSED( alangTag );
177
178 return FT_THROW( Unimplemented_Feature );
179 }
#define FT_THROW(e)
Definition: ftdebug.h:243
GLenum GLuint GLint GLenum face
Definition: glext.h:7025
#define FT_UNUSED(arg)

◆ FT_Get_Sfnt_Name()

FT_Get_Sfnt_Name ( FT_Face  face,
FT_UInt  idx,
FT_SfntName aname 
)

Definition at line 157 of file ftsnames.c.

160 {
161 FT_UNUSED( face );
162 FT_UNUSED( idx );
163 FT_UNUSED( aname );
164
165 return FT_THROW( Unimplemented_Feature );
166 }
unsigned int idx
Definition: utils.c:41

Referenced by IntGetFontLocalizedName().

◆ FT_Get_Sfnt_Name_Count()

FT_Get_Sfnt_Name_Count ( FT_Face  face)

Definition at line 148 of file ftsnames.c.

149 {
150 FT_UNUSED( face );
151
152 return 0;
153 }

Referenced by IntGetFontLocalizedName().