Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/RNA_access.h
| Show First 20 Lines • Show All 424 Lines • ▼ Show 20 Lines | int RNA_property_collection_lookup_int(PointerRNA *ptr, | ||||
| int key, | int key, | ||||
| PointerRNA *r_ptr); | PointerRNA *r_ptr); | ||||
| int RNA_property_collection_lookup_string(PointerRNA *ptr, | int RNA_property_collection_lookup_string(PointerRNA *ptr, | ||||
| PropertyRNA *prop, | PropertyRNA *prop, | ||||
| const char *key, | const char *key, | ||||
| PointerRNA *r_ptr); | PointerRNA *r_ptr); | ||||
| int RNA_property_collection_lookup_string_index( | int RNA_property_collection_lookup_string_index( | ||||
| PointerRNA *ptr, PropertyRNA *prop, const char *key, PointerRNA *r_ptr, int *r_index); | PointerRNA *ptr, PropertyRNA *prop, const char *key, PointerRNA *r_ptr, int *r_index); | ||||
| bool RNA_property_collection_lookup_int_has_fn(PropertyRNA *prop); | |||||
| bool RNA_property_collection_lookup_string_has_fn(PropertyRNA *prop); | |||||
| /** | /** | ||||
| * Zero return is an assignment error. | * Zero return is an assignment error. | ||||
| */ | */ | ||||
| int RNA_property_collection_assign_int(PointerRNA *ptr, | int RNA_property_collection_assign_int(PointerRNA *ptr, | ||||
| PropertyRNA *prop, | PropertyRNA *prop, | ||||
| int key, | int key, | ||||
| const PointerRNA *assign_ptr); | const PointerRNA *assign_ptr); | ||||
| bool RNA_property_collection_type_get(PointerRNA *ptr, PropertyRNA *prop, PointerRNA *r_ptr); | bool RNA_property_collection_type_get(PointerRNA *ptr, PropertyRNA *prop, PointerRNA *r_ptr); | ||||
| ▲ Show 20 Lines • Show All 469 Lines • Show Last 20 Lines | |||||