2000-05-29 22:55:13 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* cff.c */
|
|
|
|
/* */
|
|
|
|
/* FreeType OpenType driver component (body only). */
|
|
|
|
/* */
|
2000-06-12 21:36:41 +02:00
|
|
|
/* Copyright 1996-2000 by */
|
2000-05-29 22:55:13 +02:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2000-06-12 21:36:41 +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-05-29 22:55:13 +02: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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#define FT_MAKE_OPTION_SINGLE_OBJECT
|
|
|
|
|
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 "t2driver.c" /* driver interface */
|
|
|
|
#include "t2parse.c" /* token parser */
|
|
|
|
#include "t2load.c" /* tables loader */
|
|
|
|
#include "t2objs.c" /* object management */
|
|
|
|
#include "t2gload.c" /* glyph loader */
|
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 <cff/t2driver.c> /* driver interface */
|
|
|
|
#include <cff/t2parse.c> /* token parser */
|
|
|
|
#include <cff/t2load.c> /* tables loader */
|
|
|
|
#include <cff/t2objs.c> /* object management */
|
|
|
|
#include <cff/t2gload.c> /* glyph loader */
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
#endif
|
2000-05-29 22:55:13 +02:00
|
|
|
|
2000-06-12 21:36:41 +02:00
|
|
|
|
2000-05-29 22:55:13 +02:00
|
|
|
/* END */
|