• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /****************************************************************************
2  *
3  * ftpatent.c
4  *
5  *   FreeType API for checking patented TrueType bytecode instructions
6  *   (body).  Obsolete, retained for backward compatibility.
7  *
8  * Copyright 2007-2018 by
9  * David Turner.
10  *
11  * This file is part of the FreeType project, and may only be used,
12  * modified, and distributed under the terms of the FreeType project
13  * license, LICENSE.TXT.  By continuing to use, modify, or distribute
14  * this file you indicate that you have read the license and
15  * understand and accept it fully.
16  *
17  */
18 
19 #include <ft2build.h>
20 #include FT_FREETYPE_H
21 #include FT_TRUETYPE_TAGS_H
22 #include FT_INTERNAL_OBJECTS_H
23 #include FT_INTERNAL_STREAM_H
24 #include FT_SERVICE_SFNT_H
25 #include FT_SERVICE_TRUETYPE_GLYF_H
26 
27 
28   /* documentation is in freetype.h */
29 
30   FT_EXPORT_DEF( FT_Bool )
FT_Face_CheckTrueTypePatents(FT_Face face)31   FT_Face_CheckTrueTypePatents( FT_Face  face )
32   {
33     FT_UNUSED( face );
34 
35     return FALSE;
36   }
37 
38 
39   /* documentation is in freetype.h */
40 
41   FT_EXPORT_DEF( FT_Bool )
FT_Face_SetUnpatentedHinting(FT_Face face,FT_Bool value)42   FT_Face_SetUnpatentedHinting( FT_Face  face,
43                                 FT_Bool  value )
44   {
45     FT_UNUSED( face );
46     FT_UNUSED( value );
47 
48     return FALSE;
49   }
50 
51 /* END */
52