Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/BPY_extern.h
| Show All 15 Lines | |||||
| /** \file | /** \file | ||||
| * \ingroup python | * \ingroup python | ||||
| */ | */ | ||||
| #ifndef __BPY_EXTERN_H__ | #ifndef __BPY_EXTERN_H__ | ||||
| #define __BPY_EXTERN_H__ | #define __BPY_EXTERN_H__ | ||||
| struct AnimationEvalContext; | |||||
| struct ChannelDriver; /* DNA_anim_types.h */ | struct ChannelDriver; /* DNA_anim_types.h */ | ||||
| struct ID; /* DNA_ID.h */ | struct ID; /* DNA_ID.h */ | ||||
| struct ListBase; /* DNA_listBase.h */ | struct ListBase; /* DNA_listBase.h */ | ||||
| struct Object; /* DNA_object_types.h */ | struct Object; /* DNA_object_types.h */ | ||||
| struct PathResolvedRNA; | struct PathResolvedRNA; | ||||
| struct ReportList; | struct ReportList; | ||||
| struct Text; /* defined in DNA_text_types.h */ | struct Text; /* defined in DNA_text_types.h */ | ||||
| struct bConstraint; /* DNA_constraint_types.h */ | struct bConstraint; /* DNA_constraint_types.h */ | ||||
| ▲ Show 20 Lines • Show All 80 Lines • ▼ Show 20 Lines | |||||
| void BPY_modules_load_user(struct bContext *C); | void BPY_modules_load_user(struct bContext *C); | ||||
| void BPY_app_handlers_reset(const short do_all); | void BPY_app_handlers_reset(const short do_all); | ||||
| void BPY_driver_reset(void); | void BPY_driver_reset(void); | ||||
| float BPY_driver_exec(struct PathResolvedRNA *anim_rna, | float BPY_driver_exec(struct PathResolvedRNA *anim_rna, | ||||
| struct ChannelDriver *driver, | struct ChannelDriver *driver, | ||||
| struct ChannelDriver *driver_orig, | struct ChannelDriver *driver_orig, | ||||
| const float evaltime); | const struct AnimationEvalContext *anim_eval_context); | ||||
| void BPY_DECREF(void *pyob_ptr); /* Py_DECREF() */ | void BPY_DECREF(void *pyob_ptr); /* Py_DECREF() */ | ||||
| void BPY_DECREF_RNA_INVALIDATE(void *pyob_ptr); | void BPY_DECREF_RNA_INVALIDATE(void *pyob_ptr); | ||||
| int BPY_context_member_get(struct bContext *C, | int BPY_context_member_get(struct bContext *C, | ||||
| const char *member, | const char *member, | ||||
| struct bContextDataResult *result); | struct bContextDataResult *result); | ||||
| void BPY_context_set(struct bContext *C); | void BPY_context_set(struct bContext *C); | ||||
| void BPY_context_update(struct bContext *C); | void BPY_context_update(struct bContext *C); | ||||
| Show All 15 Lines | |||||