]>
git.saurik.com Git - wxWidgets.git/blob - src/freetype/freetype/ftnames.h
1 /***************************************************************************/
5 /* Simple interface to access SFNT name tables (which are used */
6 /* to hold font names, copyright info, notices, etc.). */
8 /* This is _not_ used to retrieve glyph names! */
10 /* Copyright 1996-2000 by */
11 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
13 /* This file is part of the FreeType project, and may only be used, */
14 /* modified, and distributed under the terms of the FreeType project */
15 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
16 /* this file you indicate that you have read the license and */
17 /* understand and accept it fully. */
19 /***************************************************************************/
26 #include <freetype/freetype.h>
29 typedef struct FT_SfntName_
31 FT_UShort platform_id
;
32 FT_UShort encoding_id
;
33 FT_UShort language_id
;
37 FT_UInt string_len
; /* in bytes */
42 FT_EXPORT_DEF( FT_UInt
) FT_Get_Sfnt_Name_Count( FT_Face face
);
44 FT_EXPORT_DEF( FT_Error
) FT_Get_Sfnt_Name( FT_Face face
,
49 #endif /* FTNAMES_H */