home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / gchsrc31 / include / smallgra.h < prev    next >
Text File  |  1992-04-27  |  788b  |  29 lines

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  This file is part of the Atari Machine Specific Library,
  4. //  and is Copyright 1992 by Warwick W. Allison.
  5. //
  6. //  You are free to copy and modify these sources, provided you acknoledge
  7. //  the origin by retaining this notice, and adhere to the conditions
  8. //  described in the file COPYING.
  9. //
  10. //////////////////////////////////////////////////////////////////////////////
  11.  
  12. void InitSmallGraphics();
  13.  
  14. void Colour(int C);
  15.  
  16. void Plot(int x, int y);
  17. void Plot(int x, int y, int C);
  18.  
  19. int ColourAt(int x, int y);
  20.  
  21. void Line(int x, int y);
  22. void Line(int x1, int y1, int x2, int y2);
  23.  
  24. void Rectangle(int x1, int y1, int x2, int y2);
  25. void Fill(int x, int y);
  26.  
  27. int MaxX();
  28. int MaxY();
  29.