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:
authorJacques Guignot <guignot@wanadoo.fr>2003-07-21 04:08:30 +0400
committerJacques Guignot <guignot@wanadoo.fr>2003-07-21 04:08:30 +0400
commitee5461b06a2e257590a90ee022d5446859427e74 (patch)
tree7fd153dfcc388c1a0d3a7e605fae759cf1f24c53 /source/blender/python/api2_2x/BezTriple.h
parent2a4fae99ceca7328398973fc797688d648ee68ea (diff)
reincorporation in the cvs of modifications which had been lost.
Diffstat (limited to 'source/blender/python/api2_2x/BezTriple.h')
-rw-r--r--source/blender/python/api2_2x/BezTriple.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/source/blender/python/api2_2x/BezTriple.h b/source/blender/python/api2_2x/BezTriple.h
index abd677f1735..c7c4b6e1dc4 100644
--- a/source/blender/python/api2_2x/BezTriple.h
+++ b/source/blender/python/api2_2x/BezTriple.h
@@ -49,8 +49,8 @@
/*****************************************************************************/
/* Python API function prototypes for the BezTriple module. */
/*****************************************************************************/
-PyObject *M_BezTriple_New (PyObject *self, PyObject *args);
-PyObject *M_BezTriple_Get (PyObject *self, PyObject *args);
+static PyObject *M_BezTriple_New (PyObject *self, PyObject *args);
+static PyObject *M_BezTriple_Get (PyObject *self, PyObject *args);
@@ -58,7 +58,7 @@ PyObject *M_BezTriple_Get (PyObject *self, PyObject *args);
/* Python method structure definition for Blender.BezTriple module: */
/*****************************************************************************/
-static struct PyMethodDef M_BezTriple_methods[] = {
+struct PyMethodDef M_BezTriple_methods[] = {
{"New",(PyCFunction)M_BezTriple_New, METH_VARARGS|METH_KEYWORDS,0},
{"Get", M_BezTriple_Get, METH_VARARGS, 0},
{"get", M_BezTriple_Get, METH_VARARGS, 0},
@@ -76,8 +76,8 @@ typedef struct {
/*****************************************************************************/
/* Python C_BezTriple methods declarations: */
/*****************************************************************************/
-PyObject *BezTriple_getName(C_BezTriple *self);
-PyObject *BezTriple_setName(C_BezTriple *self, PyObject *args);
+static PyObject *BezTriple_getName(C_BezTriple *self);
+static PyObject *BezTriple_setName(C_BezTriple *self, PyObject *args);
/*****************************************************************************/
/* Python C_BezTriple methods table: */
@@ -94,16 +94,16 @@ static PyMethodDef C_BezTriple_methods[] = {
/*****************************************************************************/
/* Python BezTriple_Type callback function prototypes: */
/*****************************************************************************/
-void BezTripleDeAlloc (C_BezTriple *self);
-//int BezTriplePrint (C_BezTriple *self, FILE *fp, int flags);
-int BezTripleSetAttr (C_BezTriple *self, char *name, PyObject *v);
-PyObject *BezTripleGetAttr (C_BezTriple *self, char *name);
-PyObject *BezTripleRepr (C_BezTriple *self);
+static void BezTripleDeAlloc (C_BezTriple *self);
+//static int BezTriplePrint (C_BezTriple *self, FILE *fp, int flags);
+static int BezTripleSetAttr (C_BezTriple *self, char *name, PyObject *v);
+static PyObject *BezTripleGetAttr (C_BezTriple *self, char *name);
+static PyObject *BezTripleRepr (C_BezTriple *self);
/*****************************************************************************/
/* Python BezTriple_Type structure definition: */
/*****************************************************************************/
-static PyTypeObject BezTriple_Type =
+PyTypeObject BezTriple_Type =
{
PyObject_HEAD_INIT(NULL)
0, /* ob_size */