home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / apps / dtp / ghost / gs301src / atari / gp_atar2.h < prev    next >
C/C++ Source or Header  |  1994-09-17  |  2KB  |  51 lines

  1. /* Copyright (C) 1989, 1992, 1993 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* gp_atar2.h */
  20.  
  21. /* Ghostscript header file for gp_atar2.c */
  22.  
  23. #include <stdarg.h>
  24. #include <gemdefs.h>
  25. #include <aesbind.h>
  26. #include <vdibind.h>
  27.  
  28. #include "memory_.h"
  29. #include "string_.h"
  30. #include "gx.h"
  31. #include "gp.h"
  32. #include "stream.h"
  33. #include "gxiodev.h"            /* must come after stream.h */
  34. #include "st_defs.h"
  35.  
  36. /* Real versions of the following functions are needed in gp_atar2. */
  37.  
  38. #undef fputc
  39. #undef fputs
  40. #undef fwrite
  41.  
  42. /* Use a pseudo file device to get win_stdio_init called
  43.  * at the right time.
  44.  */
  45.  
  46. private iodev_proc_init(win_stdio_init);
  47. private stream_proc_process(win_std_read_process);
  48. private stream_proc_process(win_std_write_process);
  49.  
  50. /* end gp_atar2.h */
  51.