2000-06-16 08:49:56 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* cidgload.h */
|
|
|
|
/* */
|
|
|
|
/* OpenType Glyph Loader (specification). */
|
|
|
|
/* */
|
2001-06-28 19:49:10 +02:00
|
|
|
/* Copyright 1996-2001 by */
|
2000-06-16 08:49:56 +02: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 */
|
|
|
|
/* 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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
#ifndef __CIDGLOAD_H__
|
|
|
|
#define __CIDGLOAD_H__
|
2000-06-01 05:27:48 +02:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
|
|
|
#include <ft2build.h>
|
2001-03-20 12:14:24 +01:00
|
|
|
#include "cidobjs.h"
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_BEGIN_HEADER
|
2000-06-01 05:27:48 +02:00
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
#if 0
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
/* Compute the maximum advance width of a font through quick parsing */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2001-06-27 21:46:12 +02:00
|
|
|
CID_Compute_Max_Advance( CID_Face face,
|
|
|
|
FT_Int* max_advance );
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2000-08-24 18:29:15 +02:00
|
|
|
#endif /* 0 */
|
2000-06-01 05:27:48 +02:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2001-06-27 21:46:12 +02:00
|
|
|
CID_Load_Glyph( CID_GlyphSlot glyph,
|
|
|
|
CID_Size size,
|
|
|
|
FT_Int glyph_index,
|
|
|
|
FT_Int load_flags );
|
2000-06-01 05:27:48 +02:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_END_HEADER
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
#endif /* __CIDGLOAD_H__ */
|
2000-06-16 08:49:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|