/* Copyright (C) 1997, 1998, 1999 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: ztrap.c,v 1.2.6.1.2.1 2003/01/17 00:49:06 giles Exp $ */ /* Operators for setting trapping parameters and zones */ #include "ghost.h" #include "oper.h" #include "ialloc.h" #include "iparam.h" #include "gstrap.h" /* Define the current trap parameters. */ /****** THIS IS BOGUS ******/ gs_trap_params_t i_trap_params; /* .settrapparams - */ private int zsettrapparams(i_ctx_t *i_ctx_p) { os_ptr op = osp; dict_param_list list; int code; check_type(*op, t_dictionary); code = dict_param_list_read(&list, op, NULL, false, iimemory); if (code < 0) return code; code = gs_settrapparams(&i_trap_params, (gs_param_list *) & list); iparam_list_release(&list); if (code < 0) return code; pop(1); return 0; } /* - settrapzone - */ private int zsettrapzone(i_ctx_t *i_ctx_p) { /****** NYI ******/ return_error(e_undefined); } /* ------ Initialization procedure ------ */ const op_def ztrap_op_defs[] = { op_def_begin_ll3(), {"1.settrapparams", zsettrapparams}, {"0settrapzone", zsettrapzone}, op_def_end(0) };