Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4349 Serge 1
/***************************************************************************/
2
/*                                                                         */
3
/*  internal.h                                                             */
4
/*                                                                         */
5
/*    Internal header files (specification only).                          */
6
/*                                                                         */
7
/*  Copyright 1996-2004, 2013 by                                           */
8
/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
9
/*                                                                         */
10
/*  This file is part of the FreeType project, and may only be used,       */
11
/*  modified, and distributed under the terms of the FreeType project      */
12
/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
13
/*  this file you indicate that you have read the license and              */
14
/*  understand and accept it fully.                                        */
15
/*                                                                         */
16
/***************************************************************************/
17
 
18
 
19
  /*************************************************************************/
20
  /*                                                                       */
21
  /* This file is automatically included by `ft2build.h'.                  */
22
  /* Do not include it manually!                                           */
23
  /*                                                                       */
24
  /*************************************************************************/
25
 
26
 
27
#define FT_INTERNAL_OBJECTS_H             
28
#define FT_INTERNAL_PIC_H                 
29
#define FT_INTERNAL_STREAM_H              
30
#define FT_INTERNAL_MEMORY_H              
31
#define FT_INTERNAL_DEBUG_H               
32
#define FT_INTERNAL_CALC_H                
33
#define FT_INTERNAL_DRIVER_H              
34
#define FT_INTERNAL_TRACE_H               
35
#define FT_INTERNAL_GLYPH_LOADER_H        
36
#define FT_INTERNAL_SFNT_H                
37
#define FT_INTERNAL_SERVICE_H             
38
#define FT_INTERNAL_RFORK_H               
39
#define FT_INTERNAL_VALIDATE_H            
40
 
41
#define FT_INTERNAL_TRUETYPE_TYPES_H      
42
#define FT_INTERNAL_TYPE1_TYPES_H         
43
 
44
#define FT_INTERNAL_POSTSCRIPT_AUX_H      
45
#define FT_INTERNAL_POSTSCRIPT_HINTS_H    
46
#define FT_INTERNAL_POSTSCRIPT_GLOBALS_H  
47
 
48
#define FT_INTERNAL_AUTOHINT_H            
49
 
50
 
51
#if defined( _MSC_VER )      /* Visual C++ (and Intel C++) */
52
 
53
  /* We disable the warning `conditional expression is constant' here */
54
  /* in order to compile cleanly with the maximum level of warnings.  */
55
  /* In particular, the warning complains about stuff like `while(0)' */
56
  /* which is very useful in macro definitions.  There is no benefit  */
57
  /* in having it enabled.                                            */
58
#pragma warning( disable : 4127 )
59
 
60
#endif /* _MSC_VER */
61
 
62
 
63
/* END */