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-07 19:23:50 +0300
committerJacques Lucke <mail@jlucke.com>2020-02-07 19:23:50 +0300
commit11df80fc6d3e9193acd278923952a8210a01282c (patch)
tree93ed1054109285a1b1a6198501ba2d216435b595 /source/blender/modifiers/MOD_modifiertypes.h
parentc2e80cfaa302e666421a8adee8d2b25a69d0700e (diff)
Cleanup: add extern "C"
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 7dd1ce830aa..5dc4adf4393 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;
@@ -86,4 +90,8 @@ extern ModifierTypeInfo modifierType_WeightedNormal;
/* MOD_util.c */
void modifier_type_init(ModifierTypeInfo *types[]);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* __MOD_MODIFIERTYPES_H__ */