- Timestamp:
- 03/22/10 15:55:52 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/branches/OpenSceneGraph-2.8/src/osgPlugins/ply/ply.h
r10012 r11274 34 34 #define __PLY_H__ 35 35 36 #ifdef __cplusplus 37 extern "C" { 38 #endif 36 // include to quieten down silly VS warnings 37 #include <osg/Export> 39 38 40 39 #include <stdio.h> … … 70 69 typedef struct PlyProperty { /* description of a property */ 71 70 72 c har *name; /* property name */71 const char *name; /* property name */ 73 72 int external_type; /* file's data type */ 74 73 int internal_type; /* program's data type */ … … 151 150 extern PlyProperty **ply_get_element_description(PlyFile *, char *, int*, int*); 152 151 extern void ply_get_element_setup( PlyFile *, char *, int, PlyProperty *); 153 extern void ply_get_property(PlyFile *, c har *, PlyProperty *);152 extern void ply_get_property(PlyFile *, const char *, PlyProperty *); 154 153 extern PlyOtherProp *ply_get_other_properties(PlyFile *, char *, int); 155 154 extern void ply_get_element(PlyFile *, void *); … … 165 164 extern int equal_strings(const char *, const char *); 166 165 167 168 #ifdef __cplusplus169 }170 #endif171 166 #endif /* !__PLY_H__ */ 172 167
