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-04-22 00:33:06 +0400
committerMichel Selten <michel@mselten.demon.nl>2003-04-22 00:33:06 +0400
commit788fa67bdf4a17c2128f15bc1f2fde7d58dd54bb (patch)
treeb2a34702f588642d67f12bbd944d8963bd5e5e79 /source/blender/python/api2_2x/modules.h
parentec669df6eec3188938d9d84dd4666eac8b5aa1d1 (diff)
* Split Object.c (created Object.h)
* Split Blender.c (created Blender.h) * Followed a naming convention suggested by Willian for Modules and Classes. * Implemented New, Get and GetSelected functions for the Object module. * Implemented most of the attributes in the Get and Set functions for the Object module. * Hopefully fixed a link error on OS X. Declared g_blenderdict externally in modules.h and moved the real declaration to Blender.c
Diffstat (limited to 'source/blender/python/api2_2x/modules.h')
-rw-r--r--source/blender/python/api2_2x/modules.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/modules.h b/source/blender/python/api2_2x/modules.h
index 6d1fa51c993..639021ce5b2 100644
--- a/source/blender/python/api2_2x/modules.h
+++ b/source/blender/python/api2_2x/modules.h
@@ -38,7 +38,7 @@
/*****************************************************************************/
/* Global variables */
/*****************************************************************************/
-PyObject *g_blenderdict;
+extern PyObject *g_blenderdict;
void initBlender (void);
PyObject* initObject (void);