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:
authorJoseph Gilbert <ascotan@gmail.com>2004-05-11 12:26:44 +0400
committerJoseph Gilbert <ascotan@gmail.com>2004-05-11 12:26:44 +0400
commitf141aed9dc578aa12a04413b2def2cc1ab95ccb8 (patch)
tree9bd399b1e7fc4c2fe2fba86cd5a3fa6e14ca3881 /source/blender/python/api2_2x/Armature.h
parent404d9ab0a2d8cb4322602d7ce482e4a78aabe8b9 (diff)
- bugfix #1197 (New Bone.parent/child Access Destructive)
- a major redo of the Bone module - BPy_Bone structs are separated into Bone data and python vars. This is necessary for the correct memory allocation of bone data between python and the global armature list.
Diffstat (limited to 'source/blender/python/api2_2x/Armature.h')
-rw-r--r--source/blender/python/api2_2x/Armature.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/python/api2_2x/Armature.h b/source/blender/python/api2_2x/Armature.h
index 7f74f69c9d1..4b40c08d300 100644
--- a/source/blender/python/api2_2x/Armature.h
+++ b/source/blender/python/api2_2x/Armature.h
@@ -24,7 +24,7 @@
*
* This is a new part of Blender.
*
- * Contributor(s): Jordi Rovira i Bonet
+ * Contributor(s): Jordi Rovira i Bonet, Joseph gilbert
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
@@ -35,13 +35,13 @@
#include <Python.h>
#include <DNA_armature_types.h>
-/*****************************************************************************/
-/* Python BPy_Armature structure definition: */
-/*****************************************************************************/
-
+//---------------------Python BPy_Armature structure definition------------------------------
typedef struct {
PyObject_HEAD
bArmature *armature;
} BPy_Armature;
+//--------------------visible prototypes------------------------------------------------------------
+PyObject *Armature_Init (void);
+
#endif /* EXPP_ARMATURE_H */