~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/python/api2_2x/Pose.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include "DNA_object_types.h"
37
37
 
38
38
//-------------------TYPE CHECKS---------------------------------
39
 
#define PoseObject_Check(v) ((v)->ob_type == &Pose_Type)
40
 
#define PoseBoneObject_Check(v) ((v)->ob_type == &PoseBone_Type)
41
 
#define PoseBonesDictObject_Check(v) ((v)->ob_type == &PoseBonesDict_Type)
 
39
#define BPy_Pose_Check(v) ((v)->ob_type == &Pose_Type)
 
40
#define BPy_PoseBone_Check(v) ((v)->ob_type == &PoseBone_Type)
 
41
#define BPy_PoseBonesDict_Check(v) ((v)->ob_type == &PoseBonesDict_Type)
42
42
//-------------------TYPEOBJECT----------------------------------
43
43
extern PyTypeObject Pose_Type;
44
44
extern PyTypeObject PoseBone_Type;