home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fonts 1 / freshfonts1.bin / programs / amiga / pastex / pastex14-beta-6 / specialhost / source / graphics.h < prev    next >
C/C++ Source or Header  |  1994-05-27  |  383b  |  23 lines

  1. /*
  2. **    SpecialHost for PasTeX
  3. **
  4. **    Copyright © by Olaf Barthel & Georg Heßmann
  5. */
  6.  
  7. /* graphics.h */
  8.  
  9. void device_SetPenSize    (long xpen, long ypen);
  10. void device_DrawPoint    (long x, long y);
  11. void device_DrawLine    (long x, long y, long x1, long y1);
  12.  
  13.  
  14. struct bitmap {
  15.   long width, height;
  16.   long *pixptr;
  17.  };
  18.  
  19. extern struct bitmap map;
  20. extern long upper_limit;
  21. extern long lower_limit;
  22.  
  23.