(root)/
freetype-2.13.2/
src/
gxvalid/
gxvmod.h
       1  /****************************************************************************
       2   *
       3   * gxvmod.h
       4   *
       5   *   FreeType's TrueTypeGX/AAT validation module implementation
       6   *   (specification).
       7   *
       8   * Copyright (C) 2004-2023 by
       9   * suzuki toshiya, Masatake YAMATO, Red Hat K.K.,
      10   * David Turner, Robert Wilhelm, and Werner Lemberg.
      11   *
      12   * This file is part of the FreeType project, and may only be used,
      13   * modified, and distributed under the terms of the FreeType project
      14   * license, LICENSE.TXT.  By continuing to use, modify, or distribute
      15   * this file you indicate that you have read the license and
      16   * understand and accept it fully.
      17   *
      18   */
      19  
      20  /****************************************************************************
      21   *
      22   * gxvalid is derived from both gxlayout module and otvalid module.
      23   * Development of gxlayout is supported by the Information-technology
      24   * Promotion Agency(IPA), Japan.
      25   *
      26   */
      27  
      28  
      29  #ifndef GXVMOD_H_
      30  #define GXVMOD_H_
      31  
      32  #include <freetype/ftmodapi.h>
      33  
      34  
      35  FT_BEGIN_HEADER
      36  
      37  
      38    FT_EXPORT_VAR( const FT_Module_Class )  gxv_module_class;
      39  
      40  
      41  FT_END_HEADER
      42  
      43  #endif /* GXVMOD_H_ */
      44  
      45  
      46  /* END */