home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 309.lha / PBM_PLUS / ppm / libppm.h < prev    next >
C/C++ Source or Header  |  1980-12-04  |  479b  |  21 lines

  1. /* libppm.h - internal header file for libppm portable pixmap library
  2. */
  3.  
  4. #ifndef _LIBPPM_H_
  5. #define _LIBPPM_H_
  6.  
  7. /* Magic constants. */
  8.  
  9. #define PPM_MAGIC1 'P'
  10. #define PPM_MAGIC2 '3'
  11. #define RPPM_MAGIC2 '6'
  12. #define PPM_FORMAT (PPM_MAGIC1 * 256 + PPM_MAGIC2)
  13. #define RPPM_FORMAT (PPM_MAGIC1 * 256 + RPPM_MAGIC2)
  14.  
  15.  
  16. /* And here are some routines internal to the ppm library. */
  17.  
  18. void ppm_readppminitrest( /* FILE *file, int *colsP, int *rowsP, int *maxvalP */ );
  19.  
  20. #endif _LIBPPM_H_
  21.