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:
authorJacques Lucke <mail@jlucke.com>2020-02-10 14:01:07 +0300
committerJacques Lucke <mail@jlucke.com>2020-02-10 14:01:07 +0300
commit605928c15b0748068137c620e1894112b838baf2 (patch)
treecbd28ef62574175de2d551336cc16d0bf2748eb4 /source/blender/modifiers/MOD_modifiertypes.h
parent9880bebd1a9a6262b16635bfeb7b003ea3ec0a9b (diff)
parent795c4a3462536d1e780b227d6877a8693f656cf9 (diff)
Merge branch 'master' into functions
Diffstat (limited to 'source/blender/modifiers/MOD_modifiertypes.h')
-rw-r--r--source/blender/modifiers/MOD_modifiertypes.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/modifiers/MOD_modifiertypes.h b/source/blender/modifiers/MOD_modifiertypes.h
index 5668b518195..e881b0e12bf 100644
--- a/source/blender/modifiers/MOD_modifiertypes.h
+++ b/source/blender/modifiers/MOD_modifiertypes.h
@@ -23,6 +23,10 @@
#include "BKE_modifier.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* ****************** Type structures for all modifiers ****************** */
extern ModifierTypeInfo modifierType_None;
@@ -90,4 +94,8 @@ extern ModifierTypeInfo modifierType_BParticlesOutput;
/* MOD_util.c */
void modifier_type_init(ModifierTypeInfo *types[]);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* __MOD_MODIFIERTYPES_H__ */