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 <jacques@blender.org>2022-09-15 20:13:01 +0300
committerJacques Lucke <jacques@blender.org>2022-09-15 20:13:13 +0300
commit8b26349d5777179808792ab123f98f5a90428754 (patch)
tree35c9536193344664790b95e82c22fb488e1d4e5c /source/creator
parent9f76d0c8e6dd2570e0da1763fcadfb738add4be2 (diff)
BLO: move blenloader to C++
Differential Revision: https://developer.blender.org/D15965
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator_intern.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/creator/creator_intern.h b/source/creator/creator_intern.h
index c9519f78af9..b035bd42ce7 100644
--- a/source/creator/creator_intern.h
+++ b/source/creator/creator_intern.h
@@ -11,6 +11,10 @@
struct bArgs;
struct bContext;
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#ifndef WITH_PYTHON_MODULE
/* creator_args.c */
@@ -87,3 +91,7 @@ extern char build_cxxflags[];
extern char build_linkflags[];
extern char build_system[];
#endif /* BUILD_DATE */
+
+#ifdef __cplusplus
+}
+#endif