home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
199.lha
/
GimmeLib
/
intuistuff.h
< prev
next >
Wrap
C/C++ Source or Header
|
1988-12-27
|
280b
|
9 lines
#ifndef GIMMELIB_INTUISTUFF_H
#define GIMMELIB_INTUISTUFF_H
/* note the image size IN BYTES returned by this macro is a ULONG */
#define GIM_IMAGESIZE(depth, width, height) \
( (ULONG)((width + 15) >> 4) * height * (sizeof(SHORT) * depth) )
#endif !GIMMELIB_INTUISTUFF_H