home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / GameSmith1-Hisoft-System.DMS / in.adf / GDS_System.lha / include / proto / graphics.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-19  |  810 b   |  23 lines

  1. #ifndef GS_GFXPROTO
  2. #define GS_GFXPROTO
  3.  
  4. int gs_plot(struct BitMap *,int,int,int);  /* bitmap ptr, X coord, Y coord, color number */
  5. int gs_plot_reverse(struct BitMap *,int,int);  /* bitmap ptr, X coord, Y coord */
  6. int gs_plot_test(struct BitMap *,int,int); /* bitmap ptr, X coord, Y coord */
  7.  
  8. void gs_plot_fast(struct BitMap *,int *,int,int,int);
  9. void gs_plot_reverse_fast(struct BitMap *,int *,int,int);
  10. int gs_plot_test_fast(struct BitMap *,int *,int,int);
  11.  
  12. /* -------------------------------------------------------------------- */
  13.  
  14. struct BitMap *gs_get_bitmap(unsigned long,unsigned long,unsigned long,unsigned long);
  15. void gs_free_bitmap(struct BitMap *);
  16.  
  17. /* -------------------------------------------------------------------- */
  18.  
  19. int *gs_alloc_BMOT(struct BitMap *);
  20. void gs_free_BMOT(int *);
  21.  
  22. #endif
  23.