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

« back to all changes in this revision

Viewing changes to source/blender/python/api2_2x/NLA.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: NLA.h,v 1.2 2004/09/25 20:30:39 stiv Exp $
2
3
 *
3
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
4
5
 *
36
37
#include <DNA_action_types.h>
37
38
 
38
39
/** NLA module initialization function. */
39
 
PyObject *NLA_Init (void);
 
40
PyObject *NLA_Init( void );
40
41
 
41
42
/** Python BPy_NLA structure definition. */
42
 
typedef struct
43
 
{
44
 
  PyObject_HEAD
45
 
  bAction *action;
46
 
}
47
 
BPy_Action;
 
43
typedef struct {
 
44
        PyObject_HEAD bAction * action;
 
45
} BPy_Action;
48
46
 
49
 
PyObject *Action_CreatePyObject (struct bAction *action);
50
 
int Action_CheckPyObject (PyObject * py_obj);
51
 
bAction *Action_FromPyObject (PyObject * py_obj);
 
47
PyObject *Action_CreatePyObject( struct bAction *action );
 
48
int Action_CheckPyObject( PyObject * py_obj );
 
49
bAction *Action_FromPyObject( PyObject * py_obj );
52
50
 
53
51
#endif