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-03-15 22:14:16 +0300
committerMichel Selten <michel@mselten.demon.nl>2003-03-15 22:14:16 +0300
commitb6b9c648bcf6fb9950773aada8785f675ce65e9e (patch)
tree3fd662054dbd5a339d1ba68eaf9425823c83bb2f /source/blender/python/api2_2x/modules.h
parenta0c1e2bd3d3cf51cfab25db9d586da431d77b8e1 (diff)
* Removed datablock.[ch]
* Object.Get("") should work. * Many variables from module Object are implemented. * Updated build environment to generate more warnings (-Wall) Michel
Diffstat (limited to 'source/blender/python/api2_2x/modules.h')
-rw-r--r--source/blender/python/api2_2x/modules.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/api2_2x/modules.h b/source/blender/python/api2_2x/modules.h
index 40316769e64..575a142a552 100644
--- a/source/blender/python/api2_2x/modules.h
+++ b/source/blender/python/api2_2x/modules.h
@@ -30,13 +30,13 @@
*/
#include <Python.h>
+#include <DNA_object_types.h>
+
/*****************************************************************************/
/* Global variables */
/*****************************************************************************/
PyObject *g_blenderdict;
-extern struct PyMethodDef Object_methods[];
-
void initBlender (void);
PyObject* initObject (void);
-
+PyObject* ObjectCreatePyObject (struct Object *obj);