"Fossies" - the Fresh Open Source Software Archive

Member "SDL2_ttf-2.20.2/external/freetype/src/autofit/afranges.h" (25 May 2022, 1083 Bytes) of package /linux/misc/SDL2_ttf-2.20.2.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "afranges.h" see the Fossies "Dox" file reference documentation.

    1 /****************************************************************************
    2  *
    3  * afranges.h
    4  *
    5  *   Auto-fitter Unicode script ranges (specification).
    6  *
    7  * Copyright (C) 2013-2022 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 #ifndef AFRANGES_H_
   20 #define AFRANGES_H_
   21 
   22 
   23 #include "aftypes.h"
   24 
   25 
   26 FT_BEGIN_HEADER
   27 
   28 #undef  SCRIPT
   29 #define SCRIPT( s, S, d, h, H, ss )                                     \
   30           extern const AF_Script_UniRangeRec  af_ ## s ## _uniranges[];
   31 
   32 #include "afscript.h"
   33 
   34 #undef  SCRIPT
   35 #define SCRIPT( s, S, d, h, H, ss )                                             \
   36           extern const AF_Script_UniRangeRec  af_ ## s ## _nonbase_uniranges[];
   37 
   38 #include "afscript.h"
   39 
   40  /* */
   41 
   42 FT_END_HEADER
   43 
   44 #endif /* AFRANGES_H_ */
   45 
   46 
   47 /* END */