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:
authorChris Want <cwant@ualberta.ca>2003-07-21 03:06:59 +0400
committerChris Want <cwant@ualberta.ca>2003-07-21 03:06:59 +0400
commit85f961bdb4b1904170fe632f8a5a6ef90e64b573 (patch)
treee1f57fd8fc0511c667620fc60cf9b869a843c92c /source/blender/python/api2_2x/BezTriple.h
parentcf495e6655de7e7dce5115d487460a33fcb8b488 (diff)
Some manipulations of the keyword 'static' to get
blender to compile
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 c7c4b6e1dc4..abd677f1735 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. */
/*****************************************************************************/
-static PyObject *M_BezTriple_New (PyObject *self, PyObject *args);
-static PyObject *M_BezTriple_Get (PyObject *self, PyObject *args);
+PyObject *M_BezTriple_New (PyObject *self, PyObject *args);
+PyObject *M_BezTriple_Get (PyObject *self, PyObject *args);
@@ -58,7 +58,7 @@ static PyObject *M_BezTriple_Get (PyObject *self, PyObject *args);
/* Python method structure definition for Blender.BezTriple module: */
/*****************************************************************************/
-struct PyMethodDef M_BezTriple_methods[] = {
+static 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: */
/*****************************************************************************/
-static PyObject *BezTriple_getName(C_BezTriple *self);
-static PyObject *BezTriple_setName(C_BezTriple *self, PyObject *args);
+PyObject *BezTriple_getName(C_BezTriple *self);
+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: */
/*****************************************************************************/
-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);
+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);
/*****************************************************************************/
/* Python BezTriple_Type structure definition: */
/*****************************************************************************/
-PyTypeObject BezTriple_Type =
+static PyTypeObject BezTriple_Type =
{
PyObject_HEAD_INIT(NULL)
0, /* ob_size */