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:
authorWillian Padovani Germano <wpgermano@gmail.com>2003-07-20 00:44:25 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2003-07-20 00:44:25 +0400
commitb2d1921d260ab0fa21ce220fb663350354d4aae2 (patch)
tree53e368f35e423266d357a1aeaea5b00dff1e9074 /source/blender/python/api2_2x/modules.h
parent9bf630a1f32a264b5e0a6842ebb812e7eb52556e (diff)
Exppython:
- Trying to correct a compile problem. IpoCurve_Init wasn't declared in modules.h
Diffstat (limited to 'source/blender/python/api2_2x/modules.h')
-rw-r--r--source/blender/python/api2_2x/modules.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/modules.h b/source/blender/python/api2_2x/modules.h
index 8f5e4104593..4c86777ea6e 100644
--- a/source/blender/python/api2_2x/modules.h
+++ b/source/blender/python/api2_2x/modules.h
@@ -119,6 +119,8 @@ bArmature * Armature_FromPyObject (PyObject *py_obj);
int Armature_CheckPyObject (PyObject *py_obj);
/* Ipo Data */
+
+PyObject * IpoCurve_Init(void);
PyObject * Ipo_Init (void);
PyObject * Ipo_CreatePyObject (struct Ipo *ipo);
Ipo * Ipo_FromPyObject (PyObject *py_obj);