vrshoot

annotate libs/ft2static/freetype/internal/services/svxf86nm.h @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
rev   line source
nuclear@0 1 /***************************************************************************/
nuclear@0 2 /* */
nuclear@0 3 /* svxf86nm.h */
nuclear@0 4 /* */
nuclear@0 5 /* The FreeType XFree86 services (specification only). */
nuclear@0 6 /* */
nuclear@0 7 /* Copyright 2003 by */
nuclear@0 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
nuclear@0 9 /* */
nuclear@0 10 /* This file is part of the FreeType project, and may only be used, */
nuclear@0 11 /* modified, and distributed under the terms of the FreeType project */
nuclear@0 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
nuclear@0 13 /* this file you indicate that you have read the license and */
nuclear@0 14 /* understand and accept it fully. */
nuclear@0 15 /* */
nuclear@0 16 /***************************************************************************/
nuclear@0 17
nuclear@0 18
nuclear@0 19 #ifndef __SVXF86NM_H__
nuclear@0 20 #define __SVXF86NM_H__
nuclear@0 21
nuclear@0 22 #include FT_INTERNAL_SERVICE_H
nuclear@0 23
nuclear@0 24
nuclear@0 25 FT_BEGIN_HEADER
nuclear@0 26
nuclear@0 27
nuclear@0 28 /*
nuclear@0 29 * A trivial service used to return the name of a face's font driver,
nuclear@0 30 * according to the XFree86 nomenclature. Note that the service data
nuclear@0 31 * is a simple constant string pointer.
nuclear@0 32 */
nuclear@0 33
nuclear@0 34 #define FT_SERVICE_ID_XF86_NAME "xf86-driver-name"
nuclear@0 35
nuclear@0 36 #define FT_XF86_FORMAT_TRUETYPE "TrueType"
nuclear@0 37 #define FT_XF86_FORMAT_TYPE_1 "Type 1"
nuclear@0 38 #define FT_XF86_FORMAT_BDF "BDF"
nuclear@0 39 #define FT_XF86_FORMAT_PCF "PCF"
nuclear@0 40 #define FT_XF86_FORMAT_TYPE_42 "Type 42"
nuclear@0 41 #define FT_XF86_FORMAT_CID "CID Type 1"
nuclear@0 42 #define FT_XF86_FORMAT_CFF "CFF"
nuclear@0 43 #define FT_XF86_FORMAT_PFR "PFR"
nuclear@0 44 #define FT_XF86_FORMAT_WINFNT "Windows FNT"
nuclear@0 45
nuclear@0 46 /* */
nuclear@0 47
nuclear@0 48
nuclear@0 49 FT_END_HEADER
nuclear@0 50
nuclear@0 51
nuclear@0 52 #endif /* __SVXF86NM_H__ */
nuclear@0 53
nuclear@0 54
nuclear@0 55 /* END */