home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / xloadimg.zip / xloadimage.4.1 / pbm.h < prev    next >
Text File  |  1993-10-21  |  195b  |  14 lines

  1. /* pbm.h:
  2.  *
  3.  * PBM header file
  4.  *
  5.  * jim frost 10.15.89
  6.  */
  7.  
  8. typedef struct {
  9.   unsigned char width[2];
  10.   unsigned char height[2];
  11. } PBMCompact;
  12.  
  13. #define PM_SCALE(a, b, c) (long)((a) * (c))/(b)
  14.