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:
authorInes Almeida <britalmeida@gmail.com>2014-06-06 11:33:15 +0400
committerInes Almeida <britalmeida@gmail.com>2015-02-03 18:32:54 +0300
commitba0978c1a97668fb42a58c3f8479e910e69fd088 (patch)
tree79865eee6652585f497302b26e6113f2dd332dcb /source/gameengine/VideoTexture/blendVideoTex.cpp
parenta7b0330c1382cec8a15d3f4067b6293b5c41269b (diff)
BGE: python API cleanup - bge submodules definitions
Diffstat (limited to 'source/gameengine/VideoTexture/blendVideoTex.cpp')
-rw-r--r--source/gameengine/VideoTexture/blendVideoTex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/VideoTexture/blendVideoTex.cpp b/source/gameengine/VideoTexture/blendVideoTex.cpp
index 014b4c50d6f..50b973d76f3 100644
--- a/source/gameengine/VideoTexture/blendVideoTex.cpp
+++ b/source/gameengine/VideoTexture/blendVideoTex.cpp
@@ -162,7 +162,7 @@ PyDoc_STRVAR(VideoTexture_module_documentation,
);
static struct PyModuleDef VideoTexture_module_def = {
- {}, /* m_base */
+ PyModuleDef_HEAD_INIT,
"VideoTexture", /* m_name */
VideoTexture_module_documentation, /* m_doc */
0, /* m_size */
@@ -173,7 +173,7 @@ static struct PyModuleDef VideoTexture_module_def = {
0, /* m_free */
};
-PyObject *initVideoTexture(void)
+PyMODINIT_FUNC initVideoTexturePythonBinding(void)
{
PyObject *m;