From a127b387607fea5c0433bde26517a9fe575e72f9 Mon Sep 17 00:00:00 2001 From: Michel Selten Date: Mon, 2 Jun 2003 20:15:50 +0000 Subject: * Fix compilation errors on Windows hopefully. Implemented the suggestion done by Aphex - thanks. * Added the doc strings to the Object module. * Added more functionality to the Object module. --- source/blender/python/api2_2x/modules.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source/blender/python/api2_2x/modules.h') diff --git a/source/blender/python/api2_2x/modules.h b/source/blender/python/api2_2x/modules.h index a9d4f39121e..bb6a82c0f53 100644 --- a/source/blender/python/api2_2x/modules.h +++ b/source/blender/python/api2_2x/modules.h @@ -89,9 +89,9 @@ int CurveCheckPyObject (PyObject *py_obj); /* Armature Data */ PyObject * M_Armature_Init (void); -PyObject * ArtmatureCreatePyObject (bArmature *armature); -bArmature* ArmatureFromPyObject (PyObject *py_obj); -int ArmatureCheckPyObject (PyObject *py_obj); +PyObject * M_ArmatureCreatePyObject (bArmature *armature); +bArmature* M_ArmatureFromPyObject (PyObject *py_obj); +int M_ArmatureCheckPyObject (PyObject *py_obj); /* Particle Effects Data */ /*PyObject * M_Effect_Init (void); @@ -102,8 +102,8 @@ int EffectCheckPyObject (PyObject *py_obj); /* Image */ PyObject * M_Image_Init (void); -PyObject * ImageCreatePyObject (Image *image); -int Image_checkPyObject (PyObject *pyobj); +PyObject * Image_CreatePyObject (Image *image); +int Image_CheckPyObject (PyObject *pyobj); /* Init functions for other modules */ PyObject * M_Window_Init (void); -- cgit v1.2.3