home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / gbmsrc.zip / gbmrect.h < prev    next >
C/C++ Source or Header  |  1997-01-26  |  337b  |  24 lines

  1. /*
  2.  
  3. gbmrect.c - Subrectangle Transfer
  4.  
  5. */
  6.  
  7. #ifndef GBMRECT_H
  8. #define    GBMRECT_H
  9.  
  10. extern void gbm_subrectangle(
  11.     const GBM *gbm,
  12.     int x, int y, int w, int h,
  13.     const byte *data_src, byte *data_dst
  14.     );
  15.  
  16. extern void gbm_blit(
  17.     const byte *s, int sw, int sx, int sy,
  18.           byte *d, int dw, int dx, int dy,
  19.     int w, int h,
  20.     int bpp
  21.     );
  22.  
  23. #endif
  24.