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:
authorWillian Padovani Germano <wpgermano@gmail.com>2003-06-10 00:07:43 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2003-06-10 00:07:43 +0400
commit84bd226fa309bf3cb196b187320b67a17df3a53e (patch)
treea1af22e9e25783fa7a703c2a212106fa09533418 /source/blender/python/api2_2x/Material.h
parentc7c5fd145134f454d7fa8042eac4be53da9e7370 (diff)
* Added 'extern' to PyTypeObject declarations in some headers.
Diffstat (limited to 'source/blender/python/api2_2x/Material.h')
-rw-r--r--source/blender/python/api2_2x/Material.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Material.h b/source/blender/python/api2_2x/Material.h
index 0387295fc14..437722fac37 100644
--- a/source/blender/python/api2_2x/Material.h
+++ b/source/blender/python/api2_2x/Material.h
@@ -48,7 +48,7 @@ typedef struct {
} C_Material;
-PyTypeObject Material_Type; /* The Material PyType Object */
+extern PyTypeObject Material_Type; /* The Material PyType Object */
#define C_Material_Check(v) \
((v)->ob_type == &Material_Type) /* for type checking */