summaryrefslogtreecommitdiff
path: root/gs/psi/icid.h
diff options
context:
space:
mode:
authorRalph Giles <ralph.giles@artifex.com>2008-08-29 18:46:21 +0000
committerRalph Giles <ralph.giles@artifex.com>2008-08-29 18:46:21 +0000
commit6ff2582d038f99b79178082b200bdfe73f734456 (patch)
tree6db04fc72813760fdc6912a15875ad83d57943df /gs/psi/icid.h
parent9d36ee856e41244d3cf0469fc0004d21e6911994 (diff)
downloadghostpdl-6ff2582d038f99b79178082b200bdfe73f734456.tar.gz
Split the source tree into two new directories.
PSSRC files are now in 'gs/psi'. GLSRC files are now in 'gs/base'. This is to facilitate build modularization and merging in the ghostpdl tree. NOTE: msvc32.mak is now in psi, not src. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@9048 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/psi/icid.h')
-rw-r--r--gs/psi/icid.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/gs/psi/icid.h b/gs/psi/icid.h
new file mode 100644
index 000000000..8c108e3f7
--- /dev/null
+++ b/gs/psi/icid.h
@@ -0,0 +1,42 @@
+/* Copyright (C) 2001-2006 Artifex Software, Inc.
+ All Rights Reserved.
+
+ This software is provided AS-IS with no warranty, either express or
+ implied.
+
+ This software is distributed under license and may not be copied, modified
+ or distributed except as expressly authorized under the terms of that
+ license. Refer to licensing information at http://www.artifex.com/
+ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
+ San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
+*/
+
+/* $Id$ */
+/* Interface to zcid.c, zfcid0.c */
+
+#ifndef icid_INCLUDED
+# define icid_INCLUDED
+
+#ifndef gs_cid_system_info_DEFINED
+# define gs_cid_system_info_DEFINED
+typedef struct gs_cid_system_info_s gs_cid_system_info_t;
+#endif
+
+/* Get the information from a CIDSystemInfo dictionary. */
+int cid_system_info_param(gs_cid_system_info_t *, const ref *);
+
+/* Convert a CID into TT char code or to TT glyph index, using SubstNWP. */
+/* Returns 1 if a glyph presents, 0 if not, <0 if error. */
+int cid_to_TT_charcode(const gs_memory_t *mem,
+ const ref *Decoding, const ref *TT_cmap,
+ const ref *SubstNWP,
+ uint nCID, uint *c, ref *src_type, ref *dst_type);
+
+/* Create a CIDMap from a True Type cmap, Decoding and SubstNWP. */
+int cid_fill_CIDMap(const gs_memory_t *mem, const ref *Decoding, const ref *TT_cmap, const ref *SubstNWP,
+ int GDBytes, ref *CIDMap);
+
+/* <cid9font> <cid> .type9mapcid <charstring> <font_index> */
+int ztype9mapcid(i_ctx_t *i_ctx_p);
+
+#endif /* icid_INCLUDED */