Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/BPY_extern.h
| Show First 20 Lines • Show All 45 Lines • ▼ Show 20 Lines | |||||
| void BPY_pyconstraint_target(struct bPythonConstraint *con, struct bConstraintTarget *ct); | void BPY_pyconstraint_target(struct bPythonConstraint *con, struct bConstraintTarget *ct); | ||||
| void BPY_pyconstraint_update(struct Object *owner, struct bConstraint *con); | void BPY_pyconstraint_update(struct Object *owner, struct bConstraint *con); | ||||
| int BPY_is_pyconstraint(struct Text *text); | int BPY_is_pyconstraint(struct Text *text); | ||||
| // void BPY_free_pyconstraint_links(struct Text *text); | // void BPY_free_pyconstraint_links(struct Text *text); | ||||
| void BPY_python_start(int argc, const char **argv); | void BPY_python_start(int argc, const char **argv); | ||||
| void BPY_python_end(void); | void BPY_python_end(void); | ||||
| void BPY_python_reset(struct bContext *C); | void BPY_python_reset(struct bContext *C); | ||||
| void BPY_python_use_system_env(void); | |||||
| /* global interpreter lock */ | /* global interpreter lock */ | ||||
| typedef void *BPy_ThreadStatePtr; | typedef void *BPy_ThreadStatePtr; | ||||
| BPy_ThreadStatePtr BPY_thread_save(void); | BPy_ThreadStatePtr BPY_thread_save(void); | ||||
| void BPY_thread_restore(BPy_ThreadStatePtr tstate); | void BPY_thread_restore(BPy_ThreadStatePtr tstate); | ||||
| ▲ Show 20 Lines • Show All 79 Lines • Show Last 20 Lines | |||||