--- ray/src/px/pcond.h 2003/02/22 02:07:27 3.10 +++ ray/src/px/pcond.h 2003/07/14 22:24:00 3.11 @@ -1,14 +1,17 @@ -/* RCSid: $Id: pcond.h,v 3.10 2003/02/22 02:07:27 greg Exp $ */ +/* RCSid: $Id: pcond.h,v 3.11 2003/07/14 22:24:00 schorsch Exp $ */ /* * Header file for picture file conditioning. */ +#ifndef _RAD_PCOND_H_ +#define _RAD_PCOND_H_ #include "standard.h" - #include "color.h" - #include "view.h" +#ifdef __cplusplus +extern "C" { +#endif #ifndef ADJ_VEIL #define ADJ_VEIL 0 /* adjust veil to preserve contrast? */ @@ -103,3 +106,8 @@ extern double crfactor(); /* contrast reduction facto extern COLOR *firstscan(); /* first processed scanline */ extern COLOR *nextscan(); /* next processed scanline */ + +#ifdef __cplusplus +} +#endif +#endif /* _RAD_PCOND_H_ */