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:
authorJoshua Leung <aligorith@gmail.com>2007-12-17 11:32:14 +0300
committerJoshua Leung <aligorith@gmail.com>2007-12-17 11:32:14 +0300
commit793d7b1eb9ea7c84324727844ba179959174ea6a (patch)
tree66ffdd10038a3b728d647ebe5da5d642d4291c1b /source/blender/blenkernel/bad_level_call_stubs
parentde073e74d105ffe9e9ab30974e47ad530a43cefe (diff)
More BPyAPI compiling fixes again.
* Added missing stubs so that blenderplayer can be linked.
Diffstat (limited to 'source/blender/blenkernel/bad_level_call_stubs')
-rw-r--r--source/blender/blenkernel/bad_level_call_stubs/stubs.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/blenkernel/bad_level_call_stubs/stubs.c b/source/blender/blenkernel/bad_level_call_stubs/stubs.c
index 55931b50462..25c4f099743 100644
--- a/source/blender/blenkernel/bad_level_call_stubs/stubs.c
+++ b/source/blender/blenkernel/bad_level_call_stubs/stubs.c
@@ -37,6 +37,7 @@
#include "BKE_bad_level_calls.h"
#include "BLI_blenlib.h"
#include "BPI_script.h"
+#include "DNA_ID.h"
#include "DNA_texture_types.h"
#include "DNA_material_types.h"
#include "DNA_node_types.h"
@@ -136,6 +137,14 @@ void BPY_pyconstraint_eval(struct bPythonConstraint *con, struct bConstraintOb *
void BPY_pyconstraint_target(struct bPythonConstraint *con, struct bConstraintTarget *ct)
{
}
+/* Py ID Hash*/
+void BPY_idhash_add(void *value){}
+void *BPY_idhash_get(ID *id){}
+void BPY_idhash_remove(ID *id)
+{
+ return 0;
+}
+void BPY_idhash_invalidate(ID *id){}
/* writefile.c */