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

« back to all changes in this revision

Viewing changes to source/blender/python/api2_2x/logic.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:
1
1
/* 
2
 
 * $Id: logic.h,v 1.4 2006/04/16 15:28:50 stiv Exp $
 
2
 * $Id: logic.h,v 1.5 2007/03/15 01:09:13 campbellbarton Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
38
38
 
39
39
extern PyTypeObject property_Type;
40
40
 
 
41
#define BPy_Property_Check(v)       ((v)->ob_type == &property_Type)
 
42
 
41
43
//--------------------------Python BPy_Property structure definition.----
42
44
typedef struct {
43
45
        PyObject_HEAD
51
53
 
52
54
//------------------------------visible prototypes-----------------------
53
55
PyObject *Property_CreatePyObject( struct bProperty *prop );
54
 
int Property_CheckPyObject( PyObject * py_obj );
55
56
bProperty *Property_FromPyObject( PyObject * py_obj );
56
57
PyObject *newPropertyObject( char *name, PyObject * data, int type );
57
58
int updatePyProperty( BPy_Property * self );