~ubuntu-branches/ubuntu/oneiric/ghostscript/oneiric

« back to all changes in this revision

Viewing changes to base/gxfcid.h

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2011-07-15 16:49:55 UTC
  • mfrom: (1.1.23 upstream)
  • Revision ID: james.westby@ubuntu.com-20110715164955-uga6qibao6kez05c
Tags: 9.04~dfsg~20110715-0ubuntu1
* New upstream release
   - GIT snapshot from Jult, 12 2011.
* debian/patches/020110406~a54df2d.patch,
  debian/patches/020110408~0791cc8.patch,
  debian/patches/020110408~507cbee.patch,
  debian/patches/020110411~4509a49.patch,
  debian/patches/020110412~78bb9a6.patch,
  debian/patches/020110418~a05ab8a.patch,
  debian/patches/020110420~20b6c78.patch,
  debian/patches/020110420~4ddefa2.patch: Removed upstream patches.
* debian/rules: Generate ABI version number (variable "abi") correctly,
  cutting off repackaging and pre-release parts.
* debian/rules: Added ./lcms2/ directory to DEB_UPSTREAM_REPACKAGE_EXCLUDES.
* debian/copyright: Added lcms2/* to the list of excluded files.
* debian/symbols.common: Updated for new upstream source. Applied patch
  which dpkg-gensymbols generated for debian/libgs9.symbols to this file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Copyright (C) 2001-2006 Artifex Software, Inc.
2
2
   All Rights Reserved.
3
 
  
 
3
 
4
4
   This software is provided AS-IS with no warranty, either express or
5
5
   implied.
6
6
 
11
11
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12
12
*/
13
13
 
14
 
/* $Id: gxfcid.h 9212 2008-11-09 19:09:30Z leonardo $ */
 
14
/* $Id$ */
15
15
/* Definitions for CID-keyed fonts */
16
16
 
17
17
#ifndef gxfcid_INCLUDED
140
140
     * handle MetricsCount.  Save the original ones here.
141
141
     */
142
142
    struct o_ {
143
 
        int (*get_outline)(gs_font_type42 *, uint, gs_glyph_data_t *);
144
 
        int (*get_metrics)(gs_font_type42 *, uint, gs_type42_metrics_options_t, 
145
 
                float * /* See comment for gs_type42_default_get_metrics. */);
 
143
        int (*get_outline)(gs_font_type42 *, uint, gs_glyph_data_t *);
 
144
        int (*get_metrics)(gs_font_type42 *, uint, gs_type42_metrics_options_t,
 
145
                float * /* See comment for gs_type42_default_get_metrics. */);
146
146
    } orig_procs;
147
147
} gs_font_cid2_data;
148
148
struct gs_font_cid2_s {
177
177
/*
178
178
 * Check CIDSystemInfo compatibility.
179
179
 */
180
 
bool gs_is_CIDSystemInfo_compatible(const gs_cid_system_info_t *info0, 
181
 
                                    const gs_cid_system_info_t *info1);
 
180
bool gs_is_CIDSystemInfo_compatible(const gs_cid_system_info_t *info0,
 
181
                                    const gs_cid_system_info_t *info1);
182
182
 
183
183
/* Return the font from the FDArray at the given index */
184
184
const gs_font *gs_cid0_indexed_font(const gs_font *, int);