1 /* Copyright (C) 2001-2006 Artifex Software, Inc.
2    All Rights Reserved.
3 
4    This software is provided AS-IS with no warranty, either express or
5    implied.
6 
7    This software is distributed under license and may not be copied, modified
8    or distributed except as expressly authorized under the terms of that
9    license.  Refer to licensing information at http://www.artifex.com/
10    or contact Artifex Software, Inc.,  7 Mt. Lassen Drive - Suite A-134,
11    San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12 */
13 
14 /* $Id: write_t2.h 9467 2009-02-10 19:55:40Z giles $ */
15 /*
16 Header for functions to serialize a type 2 (CFF) font so that it can
17 then be passed to FreeType via the FAPI FreeType bridge.
18 Started by Graham Asher, 9th August 2002.
19 */
20 
21 #ifndef write_t2_INCLUDED
22 #define write_t2_INCLUDED
23 
24 #include "ifapi.h"
25 
26 long FF_serialize_type2_font(FAPI_font* a_fapi_font,unsigned char* a_buffer,long a_buffer_size);
27 
28 #endif
29