/* 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. */ /* Definition of 'save' structure */ /* Requires isave.h */ #ifndef isstate_INCLUDED # define isstate_INCLUDED #include "gxalloc.h" #include "gsgc.h" /* Saved state of allocator and other things as needed. */ /*typedef struct alloc_save_s alloc_save_t; *//* in isave.h */ struct alloc_save_s { gs_ref_memory_t state; /* must be first for subclassing */ vm_spaces spaces; bool restore_names; bool is_current; ulong id; void *client_data; }; #define private_st_alloc_save() /* in isave.c */\ gs_private_st_suffix_add1(st_alloc_save, alloc_save_t, "alloc_save",\ save_enum_ptrs, save_reloc_ptrs, st_ref_memory, client_data) #endif /* isstate_INCLUDED */