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 >
Wrap
C/C++ Source or Header
|
1980-12-04
|
479b
|
21 lines
/* libppm.h - internal header file for libppm portable pixmap library
*/
#ifndef _LIBPPM_H_
#define _LIBPPM_H_
/* Magic constants. */
#define PPM_MAGIC1 'P'
#define PPM_MAGIC2 '3'
#define RPPM_MAGIC2 '6'
#define PPM_FORMAT (PPM_MAGIC1 * 256 + PPM_MAGIC2)
#define RPPM_FORMAT (PPM_MAGIC1 * 256 + RPPM_MAGIC2)
/* And here are some routines internal to the ppm library. */
void ppm_readppminitrest( /* FILE *file, int *colsP, int *rowsP, int *maxvalP */ );
#endif _LIBPPM_H_