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/Image.h
parentc7c5fd145134f454d7fa8042eac4be53da9e7370 (diff)
* Added 'extern' to PyTypeObject declarations in some headers.
Diffstat (limited to 'source/blender/python/api2_2x/Image.h')
-rw-r--r--source/blender/python/api2_2x/Image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Image.h b/source/blender/python/api2_2x/Image.h
index 729efa7cff1..08104875f7a 100644
--- a/source/blender/python/api2_2x/Image.h
+++ b/source/blender/python/api2_2x/Image.h
@@ -45,7 +45,7 @@ typedef struct {
} C_Image;
-PyTypeObject Image_Type; /* The Image PyType Object */
+extern PyTypeObject Image_Type; /* The Image PyType Object */
#define C_Image_Check(v) ((v)->ob_type == &Image_Type) /* for type checking */