1 /* Copyright (C) 2001-2006 Artifex Software, Inc.
2    All Rights Reserved.
3 
4    This software is provided AS-IS with no warranty, either express or
5    implied.
6 
7    This software is distributed under license and may not be copied, modified
8    or distributed except as expressly authorized under the terms of that
9    license.  Refer to licensing information at http://www.artifex.com/
10    or contact Artifex Software, Inc.,  7 Mt. Lassen Drive - Suite A-134,
11    San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12 */
13 
14 /* $Id: iinit.h 9043 2008-08-28 22:48:19Z giles $ */
15 /* (Internal) interface to iinit.c */
16 
17 #ifndef iinit_INCLUDED
18 #  define iinit_INCLUDED
19 
20 /*
21  * Declare initialization procedures exported by iinit.c for imain.c.
22  * These must be executed in the order they are declared below.
23  */
24 int obj_init(i_ctx_t **, gs_dual_memory_t *);
25 int zop_init(i_ctx_t *);
26 int op_init(i_ctx_t *);
27 #ifdef DEBUG_TRACE_PS_OPERATORS
28 const char *op_get_name_string(op_proc_t opproc);
29 #endif
30 
31 /*
32  * Test whether there are any Level 2 operators in the executable.
33  * (This is different from the language level in which the interpreter is
34  * actually running: it is only tested during initialization.)
35  */
36 bool gs_have_level2(void);
37 
38 #endif /* iinit_INCLUDED */
39