/* Copyright (C) 2001-2023 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. Refer to licensing information at http://www.artifex.com or contact Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco, CA 94129, USA, for further information. */ /* Line parameter implementation */ #ifndef gzline_INCLUDED # define gzline_INCLUDED #include "gxline.h" #include "gsgstate.h" /* * The GC procedures are complex because we must not attempt to follow * the pattern pointer iff the pattern size is 0. */ #define private_st_line_params() /* in gsistate.c */\ gs_private_st_complex_only(st_line_params, gx_line_params, "line_params",\ 0, line_params_enum_ptrs, line_params_reloc_ptrs, 0) #define st_line_params_num_ptrs 1 /* Internal accessor for line parameters in graphics state */ const gx_line_params *gs_currentlineparams(const gs_gstate *); #endif /* gzline_INCLUDED */