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/Object.h
parentc7c5fd145134f454d7fa8042eac4be53da9e7370 (diff)
* Added 'extern' to PyTypeObject declarations in some headers.
Diffstat (limited to 'source/blender/python/api2_2x/Object.h')
-rw-r--r--source/blender/python/api2_2x/Object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Object.h b/source/blender/python/api2_2x/Object.h
index 8623820d60d..711596580e7 100644
--- a/source/blender/python/api2_2x/Object.h
+++ b/source/blender/python/api2_2x/Object.h
@@ -57,7 +57,7 @@
#include "modules.h"
/* The Object PyType Object defined in Object.c */
-PyTypeObject Object_Type;
+extern PyTypeObject Object_Type;
#define C_Object_Check(v) \
((v)->ob_type == &Object_Type) /* for type checking */