Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-08-15 13:53:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-08-15 13:53:38 +0400
commit712b67743b563737781d6136a44a14a04651e825 (patch)
tree1bc70f7453ee74710480f9ef4d04c16b8f788b4d /source/blender/python/intern/bpy_rna.h
parent12291b693cebcb8b407c483fddf5d13b1711b36c (diff)
changes to help refcounts in rna be more predictable (still leaks when reloading on - F8)
Diffstat (limited to 'source/blender/python/intern/bpy_rna.h')
-rw-r--r--source/blender/python/intern/bpy_rna.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/intern/bpy_rna.h b/source/blender/python/intern/bpy_rna.h
index d14b7f1addb..717ea75a7a8 100644
--- a/source/blender/python/intern/bpy_rna.h
+++ b/source/blender/python/intern/bpy_rna.h
@@ -61,6 +61,7 @@ typedef struct {
#define BPy_BaseTypeRNA BPy_PropertyRNA
PyObject *BPY_rna_module( void );
+void BPY_update_rna_module( void );
/*PyObject *BPY_rna_doc( void );*/
PyObject *BPY_rna_types( void );
PyObject *BPY_rna_props( void );
@@ -84,6 +85,7 @@ PyObject *pyrna_basetype_register(PyObject *self, PyObject *args);
PyObject *pyrna_basetype_unregister(PyObject *self, PyObject *args);
/* called before stopping python */
+void pyrna_alloc_types(void);
void pyrna_free_types(void);
#endif