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/BKE_bad_level_calls.h
parentde073e74d105ffe9e9ab30974e47ad530a43cefe (diff)
More BPyAPI compiling fixes again.
* Added missing stubs so that blenderplayer can be linked.
Diffstat (limited to 'source/blender/blenkernel/BKE_bad_level_calls.h')
-rw-r--r--source/blender/blenkernel/BKE_bad_level_calls.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_bad_level_calls.h b/source/blender/blenkernel/BKE_bad_level_calls.h
index 8b9454f1a9d..ca563bbbaa3 100644
--- a/source/blender/blenkernel/BKE_bad_level_calls.h
+++ b/source/blender/blenkernel/BKE_bad_level_calls.h
@@ -66,6 +66,8 @@ struct Object;
struct bPythonConstraint;
struct bConstraintOb;
struct bConstraintTarget;
+
+
void BPY_do_pyscript (struct ID *id, short int event);
void BPY_clear_script (struct Script *script);
void BPY_free_compiled_text (struct Text *text);
@@ -78,7 +80,11 @@ int BPY_button_eval(char *expr, double *value);
/* pyconstraints */
void BPY_pyconstraint_eval(struct bPythonConstraint *con, struct bConstraintOb *cob, struct ListBase *targets);
void BPY_pyconstraint_targets(struct bPythonConstraint *con, struct bConstraintTarget *ct);
-
+/* py id-hash */
+void BPY_idhash_add(void * value);
+void *BPY_idhash_get(struct ID *id);
+void BPY_idhash_remove(struct ID *id);
+void BPY_idhash_invalidate(struct ID *id);
/* writefile.c */
struct Oops;