2000-07-08 21:51:42 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
2000-10-28 19:10:06 +02:00
|
|
|
/* t1gload.h */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* */
|
2000-10-28 19:10:06 +02:00
|
|
|
/* Type 1 Glyph Loader (specification). */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* */
|
|
|
|
/* 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-10-28 19:10:06 +02:00
|
|
|
#ifndef T1GLOAD_H
|
|
|
|
#define T1GLOAD_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-10-28 19:10:06 +02:00
|
|
|
#include "t1objs.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-10-28 19:10:06 +02:00
|
|
|
#include <type1/t1objs.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
|
|
|
|
|
|
|
|
|
2000-11-04 02:55:49 +01:00
|
|
|
FT_LOCAL
|
2000-10-28 19:10:06 +02:00
|
|
|
FT_Error T1_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
|
|
|
|
2000-11-04 02:55:49 +01:00
|
|
|
FT_LOCAL
|
2000-10-28 19:10:06 +02:00
|
|
|
FT_Error T1_Load_Glyph( T1_GlyphSlot glyph,
|
|
|
|
T1_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-10-28 19:10:06 +02:00
|
|
|
#endif /* T1GLOAD_H */
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|