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/Ipocurve.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/Ipocurve.h')
-rw-r--r--source/blender/python/api2_2x/Ipocurve.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/python/api2_2x/Ipocurve.h b/source/blender/python/api2_2x/Ipocurve.h
index 86c58b0f5c3..cc15c9aae9d 100644
--- a/source/blender/python/api2_2x/Ipocurve.h
+++ b/source/blender/python/api2_2x/Ipocurve.h
@@ -47,7 +47,7 @@
/*****************************************************************************/
-/* Python API function prototypes for the IpoCurve module. */
+/* Python API function prototypes for the IpoCurve module. */
/*****************************************************************************/
static PyObject *M_IpoCurve_New (PyObject *self, PyObject *args);
static PyObject *M_IpoCurve_Get (PyObject *self, PyObject *args);
@@ -55,7 +55,7 @@ static PyObject *M_IpoCurve_Get (PyObject *self, PyObject *args);
/*****************************************************************************/
/* The following string definitions are used for documentation strings. */
/* In Python these will be written to the console when doing a */
-/* Blender.IpoCurve.__doc__ */
+/* Blender.IpoCurve.__doc__ */
/*****************************************************************************/
char M_IpoCurve_doc[] = "";
char M_IpoCurve_New_doc[] ="";
@@ -63,7 +63,7 @@ char M_IpoCurve_Get_doc[] ="";
/*****************************************************************************/
-/* Python method structure definition for Blender.IpoCurve module: */
+/* Python method structure definition for Blender.IpoCurve module: */
/*****************************************************************************/
struct PyMethodDef M_IpoCurve_methods[] = {
@@ -74,7 +74,7 @@ struct PyMethodDef M_IpoCurve_methods[] = {
};
/*****************************************************************************/
-/* Python C_IpoCurve structure definition: */
+/* Python C_IpoCurve structure definition: */
/*****************************************************************************/
typedef struct {
PyObject_HEAD
@@ -82,14 +82,14 @@ typedef struct {
} C_IpoCurve;
/*****************************************************************************/
-/* Python C_IpoCurve methods declarations: */
+/* Python C_IpoCurve methods declarations: */
/*****************************************************************************/
static PyObject *IpoCurve_getName(C_IpoCurve *self);
static PyObject *IpoCurve_Recalc(C_IpoCurve *self);
static PyObject *IpoCurve_setName(C_IpoCurve *self, PyObject *args);
/*****************************************************************************/
-/* Python C_IpoCurve methods table: */
+/* Python C_IpoCurve methods table: */
/*****************************************************************************/
static PyMethodDef C_IpoCurve_methods[] = {
/* name, method, flags, doc */
@@ -103,7 +103,7 @@ static PyMethodDef C_IpoCurve_methods[] = {
};
/*****************************************************************************/
-/* Python IpoCurve_Type callback function prototypes: */
+/* Python IpoCurve_Type callback function prototypes: */
/*****************************************************************************/
static void IpoCurveDeAlloc (C_IpoCurve *self);
//static int IpoCurvePrint (C_IpoCurve *self, FILE *fp, int flags);
@@ -112,7 +112,7 @@ static PyObject *IpoCurveGetAttr (C_IpoCurve *self, char *name);
static PyObject *IpoCurveRepr (C_IpoCurve *self);
/*****************************************************************************/
-/* Python IpoCurve_Type structure definition: */
+/* Python IpoCurve_Type structure definition: */
/*****************************************************************************/
PyTypeObject IpoCurve_Type =
{