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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-07-21 05:14:55 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-07-21 05:14:55 +0400
commitf682de6fd2b4b64bc405f36f68c4024797b84492 (patch)
treebaeaa6b41731374ec50ee7b1e3e5bfe104cb4a8a /source/blender/makesrna/intern/rna_internal.h
parent1f4fa869e4877202fd91825f85be748fc3dfe50b (diff)
RNA
* Added suppport for generating code without verifying with DNA, this doesn't give good errors and is more error prone, but makes it easier to wrap things like EditBone which are not in DNA. * RNA_define_verify_sdna(0), and set to 1 again afterwards.
Diffstat (limited to 'source/blender/makesrna/intern/rna_internal.h')
-rw-r--r--source/blender/makesrna/intern/rna_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_internal.h b/source/blender/makesrna/intern/rna_internal.h
index 5afc08439e2..299539a87bd 100644
--- a/source/blender/makesrna/intern/rna_internal.h
+++ b/source/blender/makesrna/intern/rna_internal.h
@@ -103,7 +103,7 @@ typedef struct BlenderDefRNA {
ListBase structs;
ListBase allocs;
struct StructRNA *laststruct;
- int error, silent, preprocess;
+ int error, silent, preprocess, verify;
} BlenderDefRNA;
extern BlenderDefRNA DefRNA;