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-05-17 17:46:15 +0400
committerMichel Selten <michel@mselten.demon.nl>2003-05-17 17:46:15 +0400
commit612123e8fda7d4a1ee33a04f139f5c471f3afa0c (patch)
tree4082a606c3b977d084f84b987fb0856903b060c5 /source/blender/python/api2_2x/modules.h
parentd03323b1c306e3d14df7f221600eb4a2096860a5 (diff)
* Updated the naming convention for some functions. I forgot those the last
time. * Created the M_ObjectCheckPyObject and M_ObjectFromPyObject functions. These are needed for interfacing to other modules. * The Object methods have been created. Not all of them are implemented yet.
Diffstat (limited to 'source/blender/python/api2_2x/modules.h')
-rw-r--r--source/blender/python/api2_2x/modules.h26
1 files changed, 14 insertions, 12 deletions
diff --git a/source/blender/python/api2_2x/modules.h b/source/blender/python/api2_2x/modules.h
index ef7b9514c4c..7d1b7997a46 100644
--- a/source/blender/python/api2_2x/modules.h
+++ b/source/blender/python/api2_2x/modules.h
@@ -40,15 +40,17 @@
/*****************************************************************************/
extern PyObject *g_blenderdict;
-void initBlender (void);
-PyObject *initObject (void);
-PyObject *ObjectCreatePyObject (struct Object *obj);
-PyObject *M_NMesh_Init (void);
-PyObject *M_Camera_Init (void);
-PyObject *M_Lamp_Init (void);
-PyObject *M_Curve_Init (void);
-PyObject *M_Image_Init (void);
-PyObject *M_Window_Init (void);
-PyObject *M_Draw_Init (void);
-PyObject *M_BGL_Init (void);
-PyObject *M_Text_Init (void);
+void M_Blender_Init (void);
+PyObject * M_Object_Init (void);
+PyObject * M_ObjectCreatePyObject (struct Object *obj);
+int M_ObjectCheckPyObject (PyObject *py_obj);
+struct Object * M_ObjectFromPyObject (PyObject *py_obj);
+PyObject * M_NMesh_Init (void);
+PyObject * M_Camera_Init (void);
+PyObject * M_Lamp_Init (void);
+PyObject * M_Curve_Init (void);
+PyObject * M_Image_Init (void);
+PyObject * M_Window_Init (void);
+PyObject * M_Draw_Init (void);
+PyObject * M_BGL_Init (void);
+PyObject * M_Text_Init (void);