* removed the #include .c statements and replaced them with corresponding .h
files. * updated the build environment to include the needed .c files. * Updated the modules.h file to expose the necessary functions to other modules.
This commit is contained in:
@@ -119,8 +119,15 @@ bArmature * Armature_FromPyObject (PyObject *py_obj);
|
||||
int Armature_CheckPyObject (PyObject *py_obj);
|
||||
|
||||
/* Ipo Data */
|
||||
PyObject * BezTriple_CreatePyObject (BezTriple *bzt);
|
||||
int BezTriple_CheckPyObject (PyObject *pyobj);
|
||||
BezTriple* BezTriple_FromPyObject (PyObject *pyobj);
|
||||
|
||||
PyObject * IpoCurve_Init(void);
|
||||
PyObject * IpoCurve_CreatePyObject (IpoCurve *ipo);
|
||||
int IpoCurve_CheckPyObject (PyObject *pyobj);
|
||||
IpoCurve * IpoCurve_FromPyObject (PyObject *pyobj);
|
||||
|
||||
PyObject * Ipo_Init (void);
|
||||
PyObject * Ipo_CreatePyObject (struct Ipo *ipo);
|
||||
Ipo * Ipo_FromPyObject (PyObject *py_obj);
|
||||
|
||||
Reference in New Issue
Block a user