home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Applications / Telnet 2.6.1d1 / src / source / vr / vdevice.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-22  |  440 b   |  18 lines  |  [TEXT/KAHL]

  1. #ifndef VDEVS
  2. #define VDEVS
  3. /*
  4. *  Virtual device record.
  5. *  Defines the handles and hooks required for the vdevice code.
  6. */
  7.  
  8. typedef struct {
  9.     GDHandle vgd;                /* GDevice created off-screen */
  10.     CGrafPort vport;            /* Virtual port created in the GDevice */
  11.     unsigned char *bp;            /* base pointer of data in the virtual device */
  12.     Rect bounds;                /* boundary rectangle for vdevice */
  13. } VDevice, *VDevicePtr;
  14.  
  15.  
  16. #endif
  17.  
  18. #include "vdevice.proto.h"