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 / GPCHECK.H < prev    next >
C/C++ Source or Header  |  1992-06-12  |  2KB  |  41 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. /* gpcheck.h */
  21. /* Interrupt check interface for Ghostscript */
  22.  
  23. /*
  24.  * On some platforms, Ghostscript must check periodically for user-
  25.  * initiated actions.  (Eventually, this may be extended to all platforms,
  26.  * to handle multi-tasking within Ghostscript.)  Routines that run for
  27.  * a long time must periodically call gp_check_interrupts(), and if it
  28.  * returns true, must clean up whatever they are doing and return an
  29.  * e_interrupted (or gs_error_interrupted) exceptional condition.
  30.  *
  31.  * On platforms that require an interrupt check, the makefile defines
  32.  * a symbol CHECK_INTERRUPTS.  Currently this is only the Microsoft
  33.  * Windows platform.
  34.  */
  35.  
  36. #ifdef CHECK_INTERRUPTS
  37. extern int gp_check_interrupts(P0());
  38. #else
  39. #  define gp_check_interrupts() 0
  40. #endif
  41.