Changeset 10014 for OpenSceneGraph/trunk/src/osgPlugins/ply/ply.h
- Timestamp:
- 04/10/09 11:16:37 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/src/osgPlugins/ply/ply.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ply/ply.h
r10012 r10014 70 70 typedef struct PlyProperty { /* description of a property */ 71 71 72 c har *name; /* property name */72 const char *name; /* property name */ 73 73 int external_type; /* file's data type */ 74 74 int internal_type; /* program's data type */ … … 151 151 extern PlyProperty **ply_get_element_description(PlyFile *, char *, int*, int*); 152 152 extern void ply_get_element_setup( PlyFile *, char *, int, PlyProperty *); 153 extern void ply_get_property(PlyFile *, c har *, PlyProperty *);153 extern void ply_get_property(PlyFile *, const char *, PlyProperty *); 154 154 extern PlyOtherProp *ply_get_other_properties(PlyFile *, char *, int); 155 155 extern void ply_get_element(PlyFile *, void *);
