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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* 
 
2
 * $Id: Ipo.h,v 1.13 2004/10/07 19:25:39 stiv Exp $
2
3
 *
3
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
4
5
 *
38
39
/*****************************************************************************/
39
40
/* Python BPy_Ipo structure definition:                                     */
40
41
/*****************************************************************************/
41
 
typedef struct
42
 
{
43
 
  PyObject_HEAD                 /* required macro */
44
 
  Ipo * ipo;
45
 
}
46
 
BPy_Ipo;
47
 
 
48
 
 
49
 
#endif /* EXPP_IPO_H */
 
42
typedef struct {
 
43
        PyObject_HEAD           /* required macro */
 
44
        Ipo * ipo;
 
45
} BPy_Ipo;
 
46
 
 
47
extern PyTypeObject Ipo_Type;
 
48
 
 
49
#define BPy_Ipo_Check(v)  ((v)->ob_type == &Ipo_Type)   /* for type checking */
 
50
 
 
51
 
 
52
/* 
 
53
 *   prototypes
 
54
 */
 
55
 
 
56
PyObject *Ipo_Init( void );
 
57
PyObject *Ipo_CreatePyObject( struct Ipo *ipo );
 
58
Ipo *Ipo_FromPyObject( PyObject * py_obj );
 
59
int Ipo_CheckPyObject( PyObject * py_obj );
 
60
 
 
61
 
 
62
#endif                          /* EXPP_IPO_H */