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

  1. /*
  2.  * Copyright (C) Crispin Goswell 1987, All Rights Reserved.
  3.  */
  4.  
  5. #include "hard.h"
  6.  
  7. struct device
  8.  {
  9.      Matrix default_matrix;
  10.      Path default_clip;
  11.      int link_count;
  12.      struct hardware *dev;
  13.  };
  14.  
  15. extern struct device *NewDevice (), *NewCacheDevice (), *LinkDevice (), *DeviceFrom (), *UniqueDevice ();
  16. extern struct device *NewBitmapDevice ();
  17.