2000-01-27 15:02:04 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
2000-10-26 12:04:16 +02:00
|
|
|
/* type1.c */
|
2000-01-27 15:02:04 +01:00
|
|
|
/* */
|
2000-07-05 06:32:02 +02:00
|
|
|
/* FreeType experimental Type 1 driver component (body only). */
|
2000-01-27 15:02:04 +01:00
|
|
|
/* */
|
2000-07-05 06:32:02 +02:00
|
|
|
/* Copyright 1996-2000 by */
|
2000-01-27 15:02:04 +01:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2000-07-05 06:32:02 +02:00
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
2000-01-27 15:02:04 +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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2000-07-05 06:32:02 +02:00
|
|
|
|
2000-03-01 14:24:38 +01:00
|
|
|
#define FT_MAKE_OPTION_SINGLE_OBJECT
|
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-02-15 13:55:57 +01:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#include "z1parse.c"
|
|
|
|
#include "z1load.c"
|
|
|
|
#include "z1objs.c"
|
|
|
|
#include "z1driver.c"
|
|
|
|
#include "z1gload.c"
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-06-28 01:21:51 +02:00
|
|
|
#ifndef Z1_CONFIG_OPTION_NO_AFM
|
2000-07-08 02:41:13 +02:00
|
|
|
#include "z1afm.c"
|
|
|
|
#endif
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
#else /* FT_FLAT_COMPILE */
|
2000-07-08 02:41:13 +02:00
|
|
|
|
2000-10-26 12:04:16 +02:00
|
|
|
#include <type1/z1parse.c>
|
|
|
|
#include <type1/z1load.c>
|
|
|
|
#include <type1/z1objs.c>
|
|
|
|
#include <type1/z1driver.c>
|
|
|
|
#include <type1/z1gload.c>
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#ifndef Z1_CONFIG_OPTION_NO_AFM
|
2000-10-26 12:04:16 +02:00
|
|
|
#include <type1/z1afm.c>
|
2000-07-08 02:41:13 +02:00
|
|
|
#endif
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
#endif /* FT_FLAT_COMPILE */
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-05 06:32:02 +02:00
|
|
|
|
|
|
|
/* END */
|