Hackfut Security File Manager
Current Path:
/usr/include/freetype2/freetype
usr
/
include
/
freetype2
/
freetype
/
📁
..
📁
config
📄
freetype.h
(234.96 KB)
📄
ftadvanc.h
(10.1 KB)
📄
ftbbox.h
(4.51 KB)
📄
ftbdf.h
(6.59 KB)
📄
ftbitmap.h
(13.67 KB)
📄
ftcache.h
(58.84 KB)
📄
ftchapters.h
(7.09 KB)
📄
ftcid.h
(5.45 KB)
📄
fterrdef.h
(11.56 KB)
📄
fterrors.h
(9.23 KB)
📄
ftgasp.h
(3.94 KB)
📄
ftglyph.h
(38.35 KB)
📄
ftgxval.h
(12.3 KB)
📄
ftgzip.h
(4.19 KB)
📄
ftimage.h
(78.48 KB)
📄
ftincrem.h
(10.99 KB)
📄
ftlcdfil.h
(6.17 KB)
📄
ftlist.h
(16.07 KB)
📄
ftlzw.h
(4.16 KB)
📄
ftmac.h
(16.7 KB)
📄
ftmm.h
(22.18 KB)
📄
ftmodapi.h
(23.33 KB)
📄
ftmoderr.h
(7.26 KB)
📄
ftotval.h
(6.97 KB)
📄
ftoutln.h
(31.74 KB)
📄
ftpfr.h
(6.14 KB)
📄
ftrender.h
(11.14 KB)
📄
ftsizes.h
(9.34 KB)
📄
ftsnames.h
(9.86 KB)
📄
ftstroke.h
(19.09 KB)
📄
ftsynth.h
(3.81 KB)
📄
ftsystem.h
(9.9 KB)
📄
fttrigon.h
(8.25 KB)
📄
fttypes.h
(34.16 KB)
📄
ftwinfnt.h
(10.16 KB)
📄
ftxf86.h
(4.61 KB)
📄
t1tables.h
(19.58 KB)
📄
ttnameid.h
(60.71 KB)
📄
tttables.h
(38.57 KB)
📄
tttags.h
(4.88 KB)
📄
ttunpat.h
(2.18 KB)
Editing: ftmoderr.h
/***************************************************************************/ /* */ /* ftmoderr.h */ /* */ /* FreeType module error offsets (specification). */ /* */ /* Copyright 2001, 2002, 2003, 2004, 2005 by */ /* David Turner, Robert Wilhelm, and Werner Lemberg. */ /* */ /* This file is part of the FreeType project, and may only be used, */ /* modified, and distributed under the terms of the FreeType project */ /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ /* this file you indicate that you have read the license and */ /* understand and accept it fully. */ /* */ /***************************************************************************/ /*************************************************************************/ /* */ /* This file is used to define the FreeType module error offsets. */ /* */ /* The lower byte gives the error code, the higher byte gives the */ /* module. The base module has error offset 0. For example, the error */ /* `FT_Err_Invalid_File_Format' has value 0x003, the error */ /* `TT_Err_Invalid_File_Format' has value 0x1103, the error */ /* `T1_Err_Invalid_File_Format' has value 0x1203, etc. */ /* */ /* Undefine the macro FT_CONFIG_OPTION_USE_MODULE_ERRORS in ftoption.h */ /* to make the higher byte always zero (disabling the module error */ /* mechanism). */ /* */ /* It can also be used to create a module error message table easily */ /* with something like */ /* */ /* { */ /* #undef __FTMODERR_H__ */ /* #define FT_MODERRDEF( e, v, s ) { FT_Mod_Err_ ## e, s }, */ /* #define FT_MODERR_START_LIST { */ /* #define FT_MODERR_END_LIST { 0, 0 } }; */ /* */ /* const struct */ /* { */ /* int mod_err_offset; */ /* const char* mod_err_msg */ /* } ft_mod_errors[] = */ /* */ /* #include FT_MODULE_ERRORS_H */ /* } */ /* */ /* To use such a table, all errors must be ANDed with 0xFF00 to remove */ /* the error code. */ /* */ /*************************************************************************/ #ifndef __FTMODERR_H__ #define __FTMODERR_H__ /*******************************************************************/ /*******************************************************************/ /***** *****/ /***** SETUP MACROS *****/ /***** *****/ /*******************************************************************/ /*******************************************************************/ #undef FT_NEED_EXTERN_C #ifndef FT_MODERRDEF #ifdef FT_CONFIG_OPTION_USE_MODULE_ERRORS #define FT_MODERRDEF( e, v, s ) FT_Mod_Err_ ## e = v, #else #define FT_MODERRDEF( e, v, s ) FT_Mod_Err_ ## e = 0, #endif #define FT_MODERR_START_LIST enum { #define FT_MODERR_END_LIST FT_Mod_Err_Max }; #ifdef __cplusplus #define FT_NEED_EXTERN_C extern "C" { #endif #endif /* !FT_MODERRDEF */ /*******************************************************************/ /*******************************************************************/ /***** *****/ /***** LIST MODULE ERROR BASES *****/ /***** *****/ /*******************************************************************/ /*******************************************************************/ #ifdef FT_MODERR_START_LIST FT_MODERR_START_LIST #endif FT_MODERRDEF( Base, 0x000, "base module" ) FT_MODERRDEF( Autofit, 0x100, "autofitter module" ) FT_MODERRDEF( BDF, 0x200, "BDF module" ) FT_MODERRDEF( Cache, 0x300, "cache module" ) FT_MODERRDEF( CFF, 0x400, "CFF module" ) FT_MODERRDEF( CID, 0x500, "CID module" ) FT_MODERRDEF( Gzip, 0x600, "Gzip module" ) FT_MODERRDEF( LZW, 0x700, "LZW module" ) FT_MODERRDEF( OTvalid, 0x800, "OpenType validation module" ) FT_MODERRDEF( PCF, 0x900, "PCF module" ) FT_MODERRDEF( PFR, 0xA00, "PFR module" ) FT_MODERRDEF( PSaux, 0xB00, "PS auxiliary module" ) FT_MODERRDEF( PShinter, 0xC00, "PS hinter module" ) FT_MODERRDEF( PSnames, 0xD00, "PS names module" ) FT_MODERRDEF( Raster, 0xE00, "raster module" ) FT_MODERRDEF( SFNT, 0xF00, "SFNT module" ) FT_MODERRDEF( Smooth, 0x1000, "smooth raster module" ) FT_MODERRDEF( TrueType, 0x1100, "TrueType module" ) FT_MODERRDEF( Type1, 0x1200, "Type 1 module" ) FT_MODERRDEF( Type42, 0x1300, "Type 42 module" ) FT_MODERRDEF( Winfonts, 0x1400, "Windows FON/FNT module" ) #ifdef FT_MODERR_END_LIST FT_MODERR_END_LIST #endif /*******************************************************************/ /*******************************************************************/ /***** *****/ /***** CLEANUP *****/ /***** *****/ /*******************************************************************/ /*******************************************************************/ #ifdef FT_NEED_EXTERN_C } #endif #undef FT_MODERR_START_LIST #undef FT_MODERR_END_LIST #undef FT_MODERRDEF #undef FT_NEED_EXTERN_C #endif /* __FTMODERR_H__ */ /* END */
Upload File
Create Folder