00001 /***************************************************************************/ 00002 /* */ 00003 /* gxvmod.h */ 00004 /* */ 00005 /* FreeType's TrueTypeGX/AAT validation module implementation */ 00006 /* (specification). */ 00007 /* */ 00008 /* Copyright 2004, 2005 by suzuki toshiya, Masatake YAMATO, Red Hat K.K., */ 00009 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 00010 /* */ 00011 /* This file is part of the FreeType project, and may only be used, */ 00012 /* modified, and distributed under the terms of the FreeType project */ 00013 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 00014 /* this file you indicate that you have read the license and */ 00015 /* understand and accept it fully. */ 00016 /* */ 00017 /***************************************************************************/ 00018 00019 /***************************************************************************/ 00020 /* */ 00021 /* gxvalid is derived from both gxlayout module and otvalid module. */ 00022 /* Development of gxlayout is supported by the Information-technology */ 00023 /* Promotion Agency(IPA), Japan. */ 00024 /* */ 00025 /***************************************************************************/ 00026 00027 00028 #ifndef __GXVMOD_H__ 00029 #define __GXVMOD_H__ 00030 00031 #include <ft2build.h> 00032 #include FT_MODULE_H 00033 00034 00035 FT_BEGIN_HEADER 00036 00037 #ifdef FT_CONFIG_OPTION_PIC 00038 #error "this module does not support PIC yet" 00039 #endif 00040 00041 00042 FT_EXPORT_VAR( const FT_Module_Class ) gxv_module_class; 00043 00044 00045 FT_END_HEADER 00046 00047 #endif /* __GXVMOD_H__ */ 00048 00049 00050 /* END */