/* Copyright (C) 1995, 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: gscpm.h,v 1.2.6.1.2.1 2003/01/17 00:49:02 giles Exp $ */ /* Charpath mode and cache device status definitions */ #ifndef gscpm_INCLUDED # define gscpm_INCLUDED typedef enum { cpm_show, /* *show (default, must be 0) */ cpm_charwidth, /* stringwidth rmoveto (not standard PS) */ cpm_false_charpath, /* false charpath */ cpm_true_charpath, /* true charpath */ cpm_false_charboxpath, /* false charboxpath (not standard PS) */ cpm_true_charboxpath /* true charboxpath (ditto) */ } gs_char_path_mode; typedef enum { CACHE_DEVICE_NONE = 0, /* default, must be 0 */ CACHE_DEVICE_NOT_CACHING, /* setcachedevice done but not caching */ CACHE_DEVICE_CACHING /* setcachedevice done and caching */ } gs_in_cache_device_t; #endif /* gscpm_INCLUDED */