/* Copyright (C) 1997, 2000 artofcode LLC. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA, 02111-1307. */ /*$Id: gsfcmap.h,v 1.4.6.1.2.1 2003/01/17 00:49:02 giles Exp $ */ /* CMap data definition */ /* Requires gsstruct.h */ #ifndef gsfcmap_INCLUDED # define gsfcmap_INCLUDED #include "gsccode.h" /* Define the abstract type for a CMap. */ #ifndef gs_cmap_DEFINED # define gs_cmap_DEFINED typedef struct gs_cmap_s gs_cmap_t; #endif /* ---------------- Procedural interface ---------------- */ /* * Decode a character from a string using a CMap, updating the index. * Return 0 for a CID or name, N > 0 for a character code where N is the * number of bytes in the code, or an error. Shift the decoded bytes into * *pchr. For undefined characters, set *pglyph = gs_no_glyph and return 0. */ int gs_cmap_decode_next(P6(const gs_cmap_t *pcmap, const gs_const_string *str, uint *pindex, uint *pfidx, gs_char *pchr, gs_glyph *pglyph)); #endif /* gsfcmap_INCLUDED */