home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / g / gs252src.zip / GS252 / MAIN.H < prev    next >
C/C++ Source or Header  |  1992-09-06  |  2KB  |  45 lines

  1. /* Copyright (C) 1992 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* main.h */
  21. /* Interface between gs.c and gsmain.c */
  22.  
  23. /* Exported data from gsmain.c */
  24. extern char *gs_lib_env_path;
  25. extern uint gs_memory_chunk_size;
  26. extern int gs_user_errors;
  27.  
  28. /* Exported procedures from gsmain.c */
  29. extern    void    gs_init0(P4(FILE *, FILE *, FILE *, int)),
  30.         gs_init1(P0()),
  31.         gs_init2(P0());
  32. extern    void    gs_add_lib_path(P1(const char *));
  33. /* The value returned by gs_run_file and gs_run_string is */
  34. /* 0 if the interpreter ran to completion, e_Quit for a normal quit, */
  35. /* e_Fatal for a non-zero quit or a fatal error. */
  36. /* e_Fatal stores the exit code in the third argument. */
  37. extern    int    gs_run_file(P4(const char *fname, int user_errors, int *pexit_code, ref *perror_object)),
  38.         gs_run_string(P4(const char *str, int user_errors, int *pexit_code, ref *perror_object));
  39. extern    void    gs_debug_dump_stack(P2(int code, ref *perror_object));
  40. extern    void    gs_finit(P0()),
  41.         gs_exit(P1(int));
  42. /* Direct interface to the interpreter. */
  43. /* Clients do not normally use this. */
  44. extern    int    gs_interpret(P4(ref *pref, int user_errors, int *pexit_code, ref *perror_object));
  45.