2000-07-08 21:51:42 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* z1gload.h */
|
|
|
|
/* */
|
|
|
|
/* Experimental Type 1 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-01-27 15:02:04 +01:00
|
|
|
|
2000-07-05 06:32:02 +02:00
|
|
|
#ifndef Z1GLOAD_H
|
|
|
|
#define Z1GLOAD_H
|
2000-01-27 15:02:04 +01:00
|
|
|
|
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 "z1objs.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 <type1z/z1objs.h>
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#endif
|
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
LOCAL_DEF
|
2000-06-28 01:21:51 +02:00
|
|
|
FT_Error Z1_Compute_Max_Advance( T1_Face face,
|
2000-07-08 21:51:42 +02:00
|
|
|
FT_Int* max_advance );
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
LOCAL_DEF
|
2000-06-28 01:21:51 +02:00
|
|
|
FT_Error Z1_Load_Glyph( Z1_GlyphSlot glyph,
|
|
|
|
Z1_Size size,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Int glyph_index,
|
|
|
|
FT_Int load_flags );
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-05 06:32:02 +02:00
|
|
|
#endif /* Z1GLOAD_H */
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|