2000-06-01 05:27:48 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
2000-06-16 08:49:56 +02:00
|
|
|
/* cff.c */
|
2000-06-01 05:27:48 +02:00
|
|
|
/* */
|
2000-06-16 08:49:56 +02:00
|
|
|
/* FreeType OpenType driver component (body only). */
|
2000-06-01 05:27:48 +02:00
|
|
|
/* */
|
2000-06-16 08:49:56 +02:00
|
|
|
/* Copyright 1996-2000 by */
|
2000-06-01 05:27:48 +02:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2000-06-16 08:49:56 +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-06-01 05:27:48 +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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
#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 "cidparse.c"
|
|
|
|
#include "cidload.c"
|
|
|
|
#include "cidobjs.c"
|
|
|
|
#include "cidriver.c"
|
|
|
|
#include "cidgload.c"
|
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/cidparse.c>
|
|
|
|
#include <cid/cidload.c>
|
|
|
|
#include <cid/cidobjs.c>
|
|
|
|
#include <cid/cidriver.c>
|
|
|
|
#include <cid/cidgload.c>
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
#endif
|
|
|
|
|
2000-06-16 08:49:56 +02:00
|
|
|
|
|
|
|
/* END */
|