home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume12 / postscript / part01 / source / canon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1987-10-27  |  351 b   |  24 lines

  1. /*
  2.  * Copyright (C) Crispin Goswell 1987, All Rights Reserved.
  3.  */
  4.  
  5. #define ISWIN    1
  6.  
  7. struct hardware
  8.  {
  9.      union hard {
  10.          char *addr;
  11.          int handle;
  12.      } hard;
  13.      int flags;
  14.      DevicePoint extent;
  15.      struct hardware *aux, *clip;
  16.  };
  17.  
  18. extern void InitTransfer ();
  19. extern int pixels_per_inch;
  20.  
  21. extern int single_rop[];
  22.  
  23. extern struct hardware *GraySync ();
  24.