Blame include/freetype/ttunpat.h

Packit cf904d
/***************************************************************************/
Packit cf904d
/*                                                                         */
Packit cf904d
/*  ttunpat.h                                                              */
Packit cf904d
/*                                                                         */
Packit cf904d
/*    Definitions for the unpatented TrueType hinting system.              */
Packit cf904d
/*    Obsolete, retained for backward compatibility.                       */
Packit cf904d
/*                                                                         */
Packit cf904d
/*  Copyright 2003-2017 by                                                 */
Packit cf904d
/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
Packit cf904d
/*                                                                         */
Packit cf904d
/*  Written by Graham Asher <graham.asher@btinternet.com>                  */
Packit cf904d
/*                                                                         */
Packit cf904d
/*  This file is part of the FreeType project, and may only be used,       */
Packit cf904d
/*  modified, and distributed under the terms of the FreeType project      */
Packit cf904d
/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
Packit cf904d
/*  this file you indicate that you have read the license and              */
Packit cf904d
/*  understand and accept it fully.                                        */
Packit cf904d
/*                                                                         */
Packit cf904d
/***************************************************************************/
Packit cf904d
Packit cf904d
Packit cf904d
#ifndef TTUNPAT_H_
Packit cf904d
#define TTUNPAT_H_
Packit cf904d
Packit cf904d
Packit cf904d
#include <ft2build.h>
Packit cf904d
#include FT_FREETYPE_H
Packit cf904d
Packit cf904d
#ifdef FREETYPE_H
Packit cf904d
#error "freetype.h of FreeType 1 has been loaded!"
Packit cf904d
#error "Please fix the directory search order for header files"
Packit cf904d
#error "so that freetype.h of FreeType 2 is found first."
Packit cf904d
#endif
Packit cf904d
Packit cf904d
Packit cf904d
FT_BEGIN_HEADER
Packit cf904d
Packit cf904d
Packit cf904d
 /***************************************************************************
Packit cf904d
  *
Packit cf904d
  * @constant:
Packit cf904d
  *   FT_PARAM_TAG_UNPATENTED_HINTING
Packit cf904d
  *
Packit cf904d
  * @description:
Packit cf904d
  *   Deprecated.
Packit cf904d
  *
Packit cf904d
  *   Previously: A constant used as the tag of an @FT_Parameter structure to
Packit cf904d
  *   indicate that unpatented methods only should be used by the TrueType
Packit cf904d
  *   bytecode interpreter for a typeface opened by @FT_Open_Face.
Packit cf904d
  *
Packit cf904d
  */
Packit cf904d
#define FT_PARAM_TAG_UNPATENTED_HINTING  FT_MAKE_TAG( 'u', 'n', 'p', 'a' )
Packit cf904d
Packit cf904d
  /* */
Packit cf904d
Packit cf904d
Packit cf904d
FT_END_HEADER
Packit cf904d
Packit cf904d
Packit cf904d
#endif /* TTUNPAT_H_ */
Packit cf904d
Packit cf904d
Packit cf904d
/* END */