2000-06-16 08:49:56 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* cidgload.h */
|
|
|
|
/* */
|
|
|
|
/* OpenType Glyph Loader (specification). */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996-2000 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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
|
|
|
|
#ifndef CIDGLOAD_H
|
|
|
|
#define CIDGLOAD_H
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#ifdef FT_FLAT_COMPILE
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#include "cidobjs.h"
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#else
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#include <cid/cidobjs.h>
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#endif
|
2000-06-01 05:27:48 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#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 */
|
|
|
|
LOCAL_DEF
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Error 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
|
|
|
|
|
|
|
LOCAL_DEF
|
2000-06-28 01:20:35 +02:00
|
|
|
FT_Error CID_Load_Glyph( CID_GlyphSlot glyph,
|
|
|
|
CID_Size size,
|
2000-06-29 05:14:25 +02:00
|
|
|
FT_Int glyph_index,
|
|
|
|
FT_Int load_flags );
|
2000-06-01 05:27:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-06-16 08:49:56 +02:00
|
|
|
|
|
|
|
#endif /* CIDGLOAD_H */
|
|
|
|
|
|
|
|
|
|
|
|
/* END */
|