diff options
author | Henry Stiles <henry.stiles@artifex.com> | 1998-08-08 06:14:25 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 1998-08-08 06:14:25 +0000 |
commit | a54bb96de84363bd3ffc7696805c268babc95954 (patch) | |
tree | ab95f514d2831fa22cecdf942d2530b656a66d9e /gs/src/ifunc.h | |
parent | 3305477b99710b8ce6223a0bdd5014ced4de6997 (diff) |
This commit was generated by cvs2svn to compensate for changes in r279,
which included commits to RCS files with non-trunk default branches.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@280 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'gs/src/ifunc.h')
-rw-r--r-- | gs/src/ifunc.h | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/gs/src/ifunc.h b/gs/src/ifunc.h index 65cdd7a2c..17ff5be3d 100644 --- a/gs/src/ifunc.h +++ b/gs/src/ifunc.h @@ -1,22 +1,22 @@ -/* Copyright (C) 1997 Aladdin Enterprises. All rights reserved. - - This file is part of Aladdin Ghostscript. - - Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author - or distributor accepts any responsibility for the consequences of using it, - or for whether it serves any particular purpose or works at all, unless he - or she says so in writing. Refer to the Aladdin Ghostscript Free Public - License (the "License") for full details. - - Every copy of Aladdin Ghostscript must include a copy of the License, - normally in a plain ASCII text file named PUBLIC. The License grants you - the right to copy, modify and redistribute Aladdin Ghostscript, but only - under certain conditions described in the License. Among other things, the - License requires that the copyright notice and this notice be preserved on - all copies. -*/ - -/* ifunc.h */ +/* Copyright (C) 1997, 1998 Aladdin Enterprises. All rights reserved. + + This file is part of Aladdin Ghostscript. + + Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author + or distributor accepts any responsibility for the consequences of using it, + or for whether it serves any particular purpose or works at all, unless he + or she says so in writing. Refer to the Aladdin Ghostscript Free Public + License (the "License") for full details. + + Every copy of Aladdin Ghostscript must include a copy of the License, + normally in a plain ASCII text file named PUBLIC. The License grants you + the right to copy, modify and redistribute Aladdin Ghostscript, but only + under certain conditions described in the License. Among other things, the + License requires that the copyright notice and this notice be preserved on + all copies. + */ + +/*Id: ifunc.h */ /* Internal interpreter interfaces for Functions */ #ifndef ifunc_INCLUDED @@ -32,17 +32,18 @@ build_function_proc(build_function_undefined); extern build_function_proc((*build_function_procs[5])); /* Build a function structure from a PostScript dictionary. */ -int fn_build_sub_function(P3(const ref *op, gs_function_t **ppfn, int depth)); +int fn_build_sub_function(P3(const ref * op, gs_function_t ** ppfn, int depth)); + #define fn_build_function(op, ppfn)\ fn_build_sub_function(op, ppfn, 0) /* Allocate an array of function objects. */ -int ialloc_function_array(P2(uint count, gs_function_t ***pFunctions)); +int ialloc_function_array(P2(uint count, gs_function_t *** pFunctions)); /* Collect a heap-allocated array of floats. */ /* If the key is missing, set *pparray = 0 and return 0; */ /* otherwise set *pparray and return the number of elements. */ -int fn_build_float_array(P5(const ref *op, const char _ds *kstr, bool required, +int fn_build_float_array(P5(const ref * op, const char *kstr, bool required, bool even, const float **pparray)); -#endif /* ifunc_INCLUDED */ +#endif /* ifunc_INCLUDED */ |