gsparamx.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* Copyright (C) 1999 Aladdin Enterprises. All rights reserved.
  2. This file is part of AFPL Ghostscript.
  3. AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or
  4. distributor accepts any responsibility for the consequences of using it, or
  5. for whether it serves any particular purpose or works at all, unless he or
  6. she says so in writing. Refer to the Aladdin Free Public License (the
  7. "License") for full details.
  8. Every copy of AFPL Ghostscript must include a copy of the License, normally
  9. in a plain ASCII text file named PUBLIC. The License grants you the right
  10. to copy, modify and redistribute AFPL Ghostscript, but only under certain
  11. conditions described in the License. Among other things, the License
  12. requires that the copyright notice and this notice be preserved on all
  13. copies.
  14. */
  15. /*$Id: gsparamx.h,v 1.3 2000/09/19 19:00:31 lpd Exp $ */
  16. /* Interface to extended parameter dictionary utilities */
  17. #ifndef gsparamx_INCLUDED
  18. # define gsparamx_INCLUDED
  19. /* Test whether a parameter's string value is equal to a C string. */
  20. bool gs_param_string_eq(P2(const gs_param_string *pcs, const char *str));
  21. /*
  22. * Put parameters of various types. These propagate ecode, presumably
  23. * the previous accumulated error code.
  24. */
  25. int param_put_enum(P5(gs_param_list * plist, gs_param_name param_name,
  26. int *pvalue, const char *const pnames[], int ecode));
  27. int param_put_bool(P4(gs_param_list * plist, gs_param_name param_name,
  28. bool * pval, int ecode));
  29. int param_put_int(P4(gs_param_list * plist, gs_param_name param_name,
  30. int * pval, int ecode));
  31. int param_put_long(P4(gs_param_list * plist, gs_param_name param_name,
  32. long * pval, int ecode));
  33. /* Copy one parameter list to another, recursively if necessary. */
  34. int param_list_copy(P2(gs_param_list *plto, gs_param_list *plfrom));
  35. #endif /* gsparamx_INCLUDED */