Al-Qurtas-Islamic-bank-The-.../src/truetype/ttpload.h

57 lines
1.9 KiB
C
Raw Normal View History

1999-12-17 00:11:37 +01:00
/***************************************************************************/
/* */
/* ttpload.h */
/* */
/* TrueType glyph data/program tables loader (specification). */
/* */
/* Copyright 1996-2001, 2002, 2005 by */
1999-12-17 00:11:37 +01:00
/* 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 */
1999-12-17 00:11:37 +01:00
/* 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. */
/* */
/***************************************************************************/
#ifndef __TTPLOAD_H__
#define __TTPLOAD_H__
1999-12-17 00:11:37 +01:00
2000-12-08 17:17:16 +01:00
#include <ft2build.h>
#include FT_INTERNAL_TRUETYPE_TYPES_H
1999-12-17 00:11:37 +01:00
2000-12-08 17:17:16 +01:00
FT_BEGIN_HEADER
1999-12-17 00:11:37 +01:00
2000-12-08 17:17:16 +01:00
FT_LOCAL( FT_Error )
tt_face_load_loca( TT_Face face,
2001-06-28 09:17:51 +02:00
FT_Stream stream );
1999-12-17 00:11:37 +01:00
FT_LOCAL( FT_ULong )
tt_face_get_location( TT_Face face,
FT_UInt gindex,
FT_UInt *asize );
FT_LOCAL( void )
tt_face_done_loca( TT_Face face );
FT_LOCAL( FT_Error )
tt_face_load_cvt( TT_Face face,
FT_Stream stream );
1999-12-17 00:11:37 +01:00
FT_LOCAL( FT_Error )
tt_face_load_fpgm( TT_Face face,
FT_Stream stream );
1999-12-17 00:11:37 +01:00
2000-12-08 17:17:16 +01:00
FT_END_HEADER
#endif /* __TTPLOAD_H__ */
1999-12-17 00:11:37 +01:00
/* END */