home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume5 / pbm3 / part5 / libpbm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-03  |  382 b   |  20 lines

  1. /* libpbm.h - internal header file for libpbm portable bitmap library
  2. */
  3.  
  4. #define PBM_MAGIC1 'P'
  5. #define PBM_MAGIC2 '1'
  6.  
  7. #define CBM_MAGIC1 42
  8. #define OCBM_MAGIC2 23
  9. #define NCBM_MAGIC2 24
  10.  
  11. #define VERSION_OLDCBM 1
  12. #define VERSION_RUNLEN 2
  13.  
  14. #define DEFAULT_BITSPERCOUNT 8
  15. #define MAX_BITSPERCOUNT 12
  16. #define MAX_MAXCOUNT 8191
  17.  
  18. #define DEFAULT_REPEATBITS 2
  19. #define MAX_REPEATBITS 32
  20.