afgsub.h (896B)
1 /**************************************************************************** 2 * 3 * afgsub.h 4 * 5 * Auto-fitter routines to parse the GSUB table (header). 6 * 7 * Copyright (C) 2025 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 #ifndef AFGSUB_H_ 19 #define AFGSUB_H_ 20 21 #include "afglobal.h" 22 23 24 FT_BEGIN_HEADER 25 26 FT_LOCAL( void ) 27 af_parse_gsub( AF_FaceGlobals globals ); 28 29 FT_LOCAL( FT_Error ) 30 af_map_lookup( AF_FaceGlobals globals, 31 FT_Hash map, 32 FT_UInt32 lookup_offset ); 33 34 FT_END_HEADER 35 36 #endif /* AFGSUB_H_ */ 37 38 /* END */