home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / g / gs252src.zip / GS252 / DPARAM.H < prev    next >
C/C++ Source or Header  |  1992-06-21  |  2KB  |  40 lines

  1. /* Copyright (C) 1992 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* dparam.h */
  21. /* Interface to idparam.c */
  22.  
  23. #ifndef gs_matrix_DEFINED
  24. #  define gs_matrix_DEFINED
  25. typedef struct gs_matrix_s gs_matrix;
  26. #endif
  27.  
  28. int dict_bool_param(P4(const ref *pdict, const ref *pname,
  29.                int defaultval, int *pvalue));
  30. int dict_int_param(P6(const ref *pdict, const ref *pname,
  31.               int minval, int maxval, int defaultval, int *pvalue));
  32. int dict_float_param(P4(const ref *pdict, const ref *pname,
  33.             floatp defaultval, float *pvalue));
  34. int dict_int_array_param(P4(const ref *pdict, const ref *pname,
  35.                 uint maxlen, int *ivec));
  36. int dict_float_array_param(P5(const ref *pdict, const ref *pname,
  37.                   uint maxlen, float *fvec, float *defaultvec));
  38. int dict_matrix_param(P3(const ref *pdict, const ref *pname,
  39.              gs_matrix *pmat));
  40.