Update stub for recent BPY API

This commit is contained in:
Campbell Barton 2016-04-01 18:56:48 +11:00
parent 4738ae085d
commit 42a9f334c8
Notes: blender-bot 2023-02-14 08:45:09 +01:00
Referenced by issue #47991, Smoke preview in viewport not showing up on some Mac systems
2 changed files with 11 additions and 4 deletions

View File

@ -32,11 +32,16 @@
#include "BPY_extern.h"
#if defined(__GNUC__)
# pragma GCC diagnostic error "-Wmissing-prototypes"
# pragma GCC diagnostic ignored "-Wunused-parameter"
#endif
/* python, will come back */
//void BPY_script_exec(void) {}
//void BPY_python_start(void) {}
//void BPY_text_free_code(void) {}
void BPY_pyconstraint_exec(struct bPythonConstraint *UNUSED(con), struct bConstraintOb *UNUSED(cob), struct ListBase *UNUSED(targets)) {}
void BPY_pyconstraint_target(struct bPythonConstraint *UNUSED(con), struct bConstraintTarget *UNUSED(ct)) {}
int BPY_is_pyconstraint(struct Text *UNUSED(text)) { return 0;}
void BPY_pyconstraint_update(struct Object *UNUSED(owner), struct bConstraint *UNUSED(con)) {}
void BPY_pyconstraint_exec(struct bPythonConstraint *con, struct bConstraintOb *cob, struct ListBase *targets) {}
void BPY_pyconstraint_target(struct bPythonConstraint *con, struct bConstraintTarget *ct) {}
int BPY_is_pyconstraint(struct Text *text) { return 0;}
void BPY_pyconstraint_update(struct Object *owner, struct bConstraint *con) {}

View File

@ -195,6 +195,8 @@ extern bool pyrna_id_FromPyObject(struct PyObject *obj, struct ID **id);
extern const char *BPY_app_translations_py_pgettext(const char *msgctxt, const char *msgid);
extern const char *BPY_app_translations_py_pgettext(const char *msgctxt, const char *msgid);
extern struct PyObject *pyrna_id_CreatePyObject(struct ID *id);
/* bpy_interface.c */
bool BPY_string_is_keyword(const char *str) { return false; }
#endif
/* end declarations */