2000-05-29 22:55:13 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* cff.c */
|
|
|
|
/* */
|
|
|
|
/* FreeType OpenType driver component (body only). */
|
|
|
|
/* */
|
2003-12-26 08:26:08 +01:00
|
|
|
/* Copyright 1996-2001, 2002 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-12-08 03:42:29 +01:00
|
|
|
#include <ft2build.h>
|
2009-04-05 17:12:03 +02:00
|
|
|
#include "cffpic.c"
|
2001-03-20 12:14:24 +01:00
|
|
|
#include "cffdrivr.c"
|
|
|
|
#include "cffparse.c"
|
|
|
|
#include "cffload.c"
|
|
|
|
#include "cffobjs.c"
|
|
|
|
#include "cffgload.c"
|
* src/cff/cffcmap.c, src/cff/cffcmap.h, Jamfile, rules.mk: new files added
to support charmaps for CFF fonts
* src/cff/cffload.c, src/cff/cffload.h, src/cff/cffobjs.c,
src/cff/cffobjs.h, src/cff/cffparse.c, src/cffparse.h, src/cff/cffgload.c,
src/cff/cffgload.h: adding support for CFF charmaps, reformatting the
sources, and removing some bugs in the Encoding and Charset loaders
2002-07-10 18:52:06 +02:00
|
|
|
#include "cffcmap.c"
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-05-29 22:55:13 +02:00
|
|
|
/* END */
|