diff options
author | Ralph Giles <ralph.giles@artifex.com> | 2008-08-29 18:46:21 +0000 |
---|---|---|
committer | Ralph Giles <ralph.giles@artifex.com> | 2008-08-29 18:46:21 +0000 |
commit | 6ff2582d038f99b79178082b200bdfe73f734456 (patch) | |
tree | 6db04fc72813760fdc6912a15875ad83d57943df /gs/base/gsexit.h | |
parent | 9d36ee856e41244d3cf0469fc0004d21e6911994 (diff) |
Split the source tree into two new directories.
PSSRC files are now in 'gs/psi'.
GLSRC files are now in 'gs/base'.
This is to facilitate build modularization and merging in the ghostpdl
tree.
NOTE: msvc32.mak is now in psi, not src.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@9048 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/base/gsexit.h')
-rw-r--r-- | gs/base/gsexit.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gs/base/gsexit.h b/gs/base/gsexit.h new file mode 100644 index 000000000..0e850985d --- /dev/null +++ b/gs/base/gsexit.h @@ -0,0 +1,38 @@ +/* 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$ */ +/* Declarations for exits */ + +#ifndef gsexit_INCLUDED +# define gsexit_INCLUDED + + +/** The client must provide this. + * normally they do exit cleanup and error messaging + * without calling system exit() returning to the caller. + */ +int gs_to_exit(const gs_memory_t *mem, int exit_status); + +/** some clients prefer this to return the postscript error code + * to the caller otherwise the same as gs_to_exit() + */ +int gs_to_exit_with_code(const gs_memory_t *mem, int exit_status, int code); + +/** The client must provide this. + * After possible cleanup it may call gp_do_exit() which calls exit() in a platform + * independent way. This is a fatal error so returning is not a good idea. + */ +void gs_abort(const gs_memory_t *mem); + +#endif /* gsexit_INCLUDED */ |