vrshoot

diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libs/ft2static/freetype/internal/services/svxf86nm.h	Sat Feb 01 19:58:19 2014 +0200
     1.3 @@ -0,0 +1,55 @@
     1.4 +/***************************************************************************/
     1.5 +/*                                                                         */
     1.6 +/*  svxf86nm.h                                                             */
     1.7 +/*                                                                         */
     1.8 +/*    The FreeType XFree86 services (specification only).                  */
     1.9 +/*                                                                         */
    1.10 +/*  Copyright 2003 by                                                      */
    1.11 +/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
    1.12 +/*                                                                         */
    1.13 +/*  This file is part of the FreeType project, and may only be used,       */
    1.14 +/*  modified, and distributed under the terms of the FreeType project      */
    1.15 +/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
    1.16 +/*  this file you indicate that you have read the license and              */
    1.17 +/*  understand and accept it fully.                                        */
    1.18 +/*                                                                         */
    1.19 +/***************************************************************************/
    1.20 +
    1.21 +
    1.22 +#ifndef __SVXF86NM_H__
    1.23 +#define __SVXF86NM_H__
    1.24 +
    1.25 +#include FT_INTERNAL_SERVICE_H
    1.26 +
    1.27 +
    1.28 +FT_BEGIN_HEADER
    1.29 +
    1.30 +
    1.31 +  /*
    1.32 +   *  A trivial service used to return the name of a face's font driver,
    1.33 +   *  according to the XFree86 nomenclature.  Note that the service data
    1.34 +   *  is a simple constant string pointer.
    1.35 +   */
    1.36 +
    1.37 +#define FT_SERVICE_ID_XF86_NAME  "xf86-driver-name"
    1.38 +
    1.39 +#define FT_XF86_FORMAT_TRUETYPE  "TrueType"
    1.40 +#define FT_XF86_FORMAT_TYPE_1    "Type 1"
    1.41 +#define FT_XF86_FORMAT_BDF       "BDF"
    1.42 +#define FT_XF86_FORMAT_PCF       "PCF"
    1.43 +#define FT_XF86_FORMAT_TYPE_42   "Type 42"
    1.44 +#define FT_XF86_FORMAT_CID       "CID Type 1"
    1.45 +#define FT_XF86_FORMAT_CFF       "CFF"
    1.46 +#define FT_XF86_FORMAT_PFR       "PFR"
    1.47 +#define FT_XF86_FORMAT_WINFNT    "Windows FNT"
    1.48 +
    1.49 +  /* */
    1.50 +
    1.51 +
    1.52 +FT_END_HEADER
    1.53 +
    1.54 +
    1.55 +#endif /* __SVXF86NM_H__ */
    1.56 +
    1.57 +
    1.58 +/* END */