Revision: | 2.1 |
Committed: | Sat Mar 27 12:41:45 2004 UTC (20 years, 7 months ago) by schorsch |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | rad5R4, rad5R2, rad4R2P2, rad5R0, rad5R1, rad3R7P2, rad3R7P1, rad4R2, rad4R1, rad4R0, rad3R6, rad3R6P1, rad3R8, rad3R9, rad4R2P1, rad5R3, HEAD |
Log Message: | Continued ANSIfication. Renamed local initotypes() to ot_initotypes(). |
# | User | Rev | Content |
---|---|---|---|
1 | schorsch | 2.1 | /* RCSid $Id$ */ |
2 | /* | ||
3 | * Header for oconv support routines | ||
4 | * | ||
5 | */ | ||
6 | #ifndef _RAD_OCONV_H_ | ||
7 | #define _RAD_OCONV_H_ | ||
8 | |||
9 | #include "octree.h" | ||
10 | #include "object.h" | ||
11 | |||
12 | #ifdef __cplusplus | ||
13 | extern "C" { | ||
14 | #endif | ||
15 | |||
16 | /* defined in initotypes.c */ | ||
17 | void ot_initotypes(void); | ||
18 | |||
19 | /* defined in writeoct.c */ | ||
20 | extern void writeoct(int store, CUBE *scene, char *ofn[]); | ||
21 | |||
22 | /* defined in bbox.c */ | ||
23 | extern void add2bbox(OBJREC *o, FVECT bbmin, FVECT bbmax); | ||
24 | |||
25 | /* defined in readobj2.c */ | ||
26 | typedef void ro_cbfunc(OBJREC *o); | ||
27 | extern void readobj2(char *input, ro_cbfunc callback); | ||
28 | |||
29 | |||
30 | |||
31 | #ifdef __cplusplus | ||
32 | } | ||
33 | #endif | ||
34 | #endif /* _RAD_OCONV_H_ */ | ||
35 |