/* Copyright (C) 2001-2006 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 that license. Refer to licensing information at http://www.artifex.com/ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information. */ /* $Id$ */ /* Initialization for the imager */ #include "stdio_.h" #include "memory_.h" #include "gdebug.h" #include "gscdefs.h" #include "gsmemory.h" #include "gsmalloc.h" #include "gp.h" #include "gslib.h" /* interface definition */ /* Configuration information from gconfig.c. */ extern_gx_init_table(); /* Initialization to be done before anything else. */ int gs_lib_init(FILE * debug_out) { return gs_lib_init1(gs_lib_init0(debug_out)); } gs_memory_t * gs_lib_init0(FILE * debug_out) { gs_memory_t *mem; mem = (gs_memory_t *) gs_malloc_init(NULL); /* Reset debugging flags */ memset(gs_debug, 0, 128); gs_log_errors = 0; return mem; } int gs_lib_init1(gs_memory_t * mem) { /* Run configuration-specific initialization procedures. */ init_proc((*const *ipp)); int code; for (ipp = gx_init_table; *ipp != 0; ++ipp) if ((code = (**ipp)(mem)) < 0) return code; return 0; } /* Clean up after execution. */ void gs_lib_finit(int exit_status, int code, gs_memory_t *mem) { /* Do platform-specific cleanup. */ gp_exit(exit_status, code); /* NB: interface problem. * if gs_lib_init0 was called the we should * gs_malloc_release(mem); * else * someone else has control of mem so we can't free it. * gs_view and iapi.h interface */ }