Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Selten <michel@mselten.demon.nl>2003-07-20 22:06:06 +0400
committerMichel Selten <michel@mselten.demon.nl>2003-07-20 22:06:06 +0400
commit2ccf7ffb84ef035563d5ad0289b76274b70fee36 (patch)
tree049065ff34a73e3ebecf8374e53a457b042ee3d4 /source/blender/python/api2_2x/modules.h
parent5a7db88f59a910cd9c1dc48bbc083bfd3f36bdf5 (diff)
* 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.
Diffstat (limited to 'source/blender/python/api2_2x/modules.h')
-rw-r--r--source/blender/python/api2_2x/modules.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/modules.h b/source/blender/python/api2_2x/modules.h
index 4c86777ea6e..45eca07416b 100644
--- a/source/blender/python/api2_2x/modules.h
+++ b/source/blender/python/api2_2x/modules.h
@@ -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);