Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/RNA_types.h
| Show All 31 Lines | |||||
| struct ID; | struct ID; | ||||
| struct Main; | struct Main; | ||||
| struct ParameterList; | struct ParameterList; | ||||
| struct PropertyRNA; | struct PropertyRNA; | ||||
| struct ReportList; | struct ReportList; | ||||
| struct StructRNA; | struct StructRNA; | ||||
| struct bContext; | struct bContext; | ||||
| /** Pointer | /** | ||||
| * Pointer | |||||
| * | * | ||||
| * RNA pointers are not a single C pointer but include the type, | * RNA pointers are not a single C pointer but include the type, | ||||
| * and a pointer to the ID struct that owns the struct, since | * and a pointer to the ID struct that owns the struct, since | ||||
| * in some cases this information is needed to correctly get/set | * in some cases this information is needed to correctly get/set | ||||
| * the properties and validate them. */ | * the properties and validate them. */ | ||||
| typedef struct PointerRNA { | typedef struct PointerRNA { | ||||
| struct ID *owner_id; | struct ID *owner_id; | ||||
| ▲ Show 20 Lines • Show All 608 Lines • Show Last 20 Lines | |||||