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:
authorCampbell Barton <ideasman42@gmail.com>2009-12-31 01:51:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-31 01:51:44 +0300
commit453945e9e3e2ef360976e57a01c587c3c8a0bb93 (patch)
tree074bb6a2aec54cee7ec652b3153373f2400ee34d /source/blender/python/intern/bpy_util.h
parent26de5e5f2bc14de8b3015a71492b2d97115b6102 (diff)
remove python api cruft from custom operator registration
Diffstat (limited to 'source/blender/python/intern/bpy_util.h')
-rw-r--r--source/blender/python/intern/bpy_util.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/source/blender/python/intern/bpy_util.h b/source/blender/python/intern/bpy_util.h
index 83fa7a5b7c4..dcf957969e8 100644
--- a/source/blender/python/intern/bpy_util.h
+++ b/source/blender/python/intern/bpy_util.h
@@ -36,16 +36,6 @@
struct EnumPropertyItem;
struct ReportList;
-/* for internal use only, so python can interchange a sequence of strings with flags */
-typedef struct BPY_flag_def {
- const char *name;
- int flag;
-} BPY_flag_def;
-
-
-PyObject *BPY_flag_to_list(BPY_flag_def *flagdef, int flag);
-int BPY_flag_from_seq(BPY_flag_def *flagdef, PyObject *seq, int *flag);
-
void PyObSpit(char *name, PyObject *var);
void PyLineSpit(void);
void BPY_getFileAndNum(char **filename, int *lineno);