home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 199.lha / GimmeLib / intuistuff.h < prev    next >
C/C++ Source or Header  |  1988-12-27  |  280b  |  9 lines

  1. #ifndef GIMMELIB_INTUISTUFF_H
  2. #define GIMMELIB_INTUISTUFF_H
  3.  
  4. /* note the image size IN BYTES returned by this macro is a ULONG */
  5. #define  GIM_IMAGESIZE(depth, width, height)  \
  6.         ( (ULONG)((width + 15) >> 4) * height * (sizeof(SHORT) * depth) )
  7.  
  8. #endif !GIMMELIB_INTUISTUFF_H
  9.