fix warnings.

This commit is contained in:
2011-02-15 03:20:12 +00:00
parent b47bfd85e8
commit 07e9cfef81
3 changed files with 28 additions and 17 deletions

View File

@@ -25,6 +25,13 @@
#ifndef BPY_OPERATOR_WRAP_H
#define BPY_OPERATOR_WRAP_H
struct wmOperatorType;
/* these are used for operator methods, used by bpy_operator.c */
PyObject *PYOP_wrap_macro_define(PyObject *self, PyObject *args);
/* exposed to rna/wm api */
void operator_wrapper(struct wmOperatorType *ot, void *userdata);
void macro_wrapper(struct wmOperatorType *ot, void *userdata);
#endif