| 9 |
|
* |
| 10 |
|
* 2/12/86 |
| 11 |
|
*/ |
| 12 |
+ |
#ifndef _RAD_CONE_H_ |
| 13 |
+ |
#define _RAD_CONE_H_ |
| 14 |
+ |
#ifdef __cplusplus |
| 15 |
+ |
extern "C" { |
| 16 |
+ |
#endif |
| 17 |
|
|
| 18 |
|
#include "copyright.h" |
| 19 |
|
|
| 32 |
|
#define CO_P0(co) ((co)->ca+(co)->p0) |
| 33 |
|
#define CO_P1(co) ((co)->ca+(co)->p1) |
| 34 |
|
|
| 30 |
– |
#ifdef NOPROTO |
| 35 |
|
|
| 32 |
– |
extern CONE *getcone(); |
| 33 |
– |
extern void freecone(); |
| 34 |
– |
extern void conexform(); |
| 35 |
– |
|
| 36 |
– |
#else |
| 37 |
– |
|
| 36 |
|
extern CONE *getcone(OBJREC *o, int getxf); |
| 37 |
|
extern void freecone(OBJREC *o); |
| 38 |
|
extern void conexform(CONE *co); |
| 39 |
|
|
| 40 |
+ |
|
| 41 |
+ |
#ifdef __cplusplus |
| 42 |
+ |
} |
| 43 |
|
#endif |
| 44 |
+ |
#endif /* _RAD_CONE_H_ */ |
| 45 |
+ |
|