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:
authorStephen Swaney <sswaney@centurytel.net>2004-03-31 11:40:08 +0400
committerStephen Swaney <sswaney@centurytel.net>2004-03-31 11:40:08 +0400
commit79ecc08b89dcea6190fcce639cdaad811698ff2b (patch)
tree7f77541472ff2270aa7942499c74eff3d76aba80 /source/blender/python/api2_2x/Bone.h
parentfa0196b8f920c6662cf7bc1d74161febb36787cb (diff)
more housekeeping. move static declarations and definititions out of .h files.
tidy up initializers and c++ style comments.
Diffstat (limited to 'source/blender/python/api2_2x/Bone.h')
-rw-r--r--source/blender/python/api2_2x/Bone.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/source/blender/python/api2_2x/Bone.h b/source/blender/python/api2_2x/Bone.h
index 762733b47fc..84c2b5e88e5 100644
--- a/source/blender/python/api2_2x/Bone.h
+++ b/source/blender/python/api2_2x/Bone.h
@@ -41,14 +41,15 @@ PyObject *Bone_Init (void);
/** Python BPy_Bone structure definition. */
-typedef struct {
- PyObject_HEAD
- Bone *bone;
-} BPy_Bone;
+typedef struct
+{
+ PyObject_HEAD Bone *bone;
+}
+BPy_Bone;
-PyObject* Bone_CreatePyObject (struct Bone *obj);
-int Bone_CheckPyObject (PyObject *py_obj);
-Bone* Bone_FromPyObject (PyObject *py_obj);
+PyObject *Bone_CreatePyObject (struct Bone *obj);
+int Bone_CheckPyObject (PyObject * py_obj);
+Bone *Bone_FromPyObject (PyObject * py_obj);
#endif