00001 /***************************************************************************/ 00002 /* */ 00003 /* svxf86nm.h */ 00004 /* */ 00005 /* The FreeType XFree86 services (specification only). */ 00006 /* */ 00007 /* Copyright 2003 by */ 00008 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 00009 /* */ 00010 /* This file is part of the FreeType project, and may only be used, */ 00011 /* modified, and distributed under the terms of the FreeType project */ 00012 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 00013 /* this file you indicate that you have read the license and */ 00014 /* understand and accept it fully. */ 00015 /* */ 00016 /***************************************************************************/ 00017 00018 00019 #ifndef __SVXF86NM_H__ 00020 #define __SVXF86NM_H__ 00021 00022 #include FT_INTERNAL_SERVICE_H 00023 00024 00025 FT_BEGIN_HEADER 00026 00027 00028 /* 00029 * A trivial service used to return the name of a face's font driver, 00030 * according to the XFree86 nomenclature. Note that the service data 00031 * is a simple constant string pointer. 00032 */ 00033 00034 #define FT_SERVICE_ID_XF86_NAME "xf86-driver-name" 00035 00036 #define FT_XF86_FORMAT_TRUETYPE "TrueType" 00037 #define FT_XF86_FORMAT_TYPE_1 "Type 1" 00038 #define FT_XF86_FORMAT_BDF "BDF" 00039 #define FT_XF86_FORMAT_PCF "PCF" 00040 #define FT_XF86_FORMAT_TYPE_42 "Type 42" 00041 #define FT_XF86_FORMAT_CID "CID Type 1" 00042 #define FT_XF86_FORMAT_CFF "CFF" 00043 #define FT_XF86_FORMAT_PFR "PFR" 00044 #define FT_XF86_FORMAT_WINFNT "Windows FNT" 00045 00046 /* */ 00047 00048 00049 FT_END_HEADER 00050 00051 00052 #endif /* __SVXF86NM_H__ */ 00053 00054 00055 /* END */