| 2 |
|
/* |
| 3 |
|
* Header file for object display routines for rholo drivers. |
| 4 |
|
*/ |
| 5 |
+ |
#ifndef _RAD_RHDOBJ_H_ |
| 6 |
+ |
#define _RAD_RHDOBJ_H_ |
| 7 |
|
|
| 8 |
+ |
#ifdef __cplusplus |
| 9 |
+ |
extern "C" { |
| 10 |
+ |
#endif |
| 11 |
+ |
|
| 12 |
|
/* additional user commands */ |
| 13 |
|
#define DO_LOAD 0 /* load octree object */ |
| 14 |
|
#define DO_UNLOAD 1 /* unload (free) octree object */ |
| 154 |
|
extern char rhdcmd[DO_NCMDS][8]; |
| 155 |
|
|
| 156 |
|
extern int (*dobj_lightsamp)(); /* pointer to function to get lights */ |
| 157 |
+ |
|
| 158 |
+ |
#ifdef __cplusplus |
| 159 |
+ |
} |
| 160 |
+ |
#endif |
| 161 |
+ |
#endif /* _RAD_RHDOBJ_H_ */ |
| 162 |
+ |
|