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:
authorHans Goudey <h.goudey@me.com>2021-12-25 23:28:22 +0300
committerHans Goudey <h.goudey@me.com>2021-12-25 23:28:22 +0300
commit85abac7e87872dfe70635ab4a75ed5e1acec0e88 (patch)
tree474bc18f35a6684e1f752c5422189efc529fa030 /source/blender/blenkernel/intern/data_transfer_intern.h
parentf7ddb1ed8a2a646e3d04d5e2e46929673084149c (diff)
Cleanup: Move customdata.c to C++
Differential Revision: https://developer.blender.org/D13666
Diffstat (limited to 'source/blender/blenkernel/intern/data_transfer_intern.h')
-rw-r--r--source/blender/blenkernel/intern/data_transfer_intern.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/data_transfer_intern.h b/source/blender/blenkernel/intern/data_transfer_intern.h
index e40b4946f52..5510f699197 100644
--- a/source/blender/blenkernel/intern/data_transfer_intern.h
+++ b/source/blender/blenkernel/intern/data_transfer_intern.h
@@ -25,6 +25,10 @@
#include "BKE_customdata.h" /* For cd_datatransfer_interp */
+#ifdef __cplusplus
+extern "C" {
+#endif
+
struct CustomData;
struct CustomDataTransferLayerMap;
struct ListBase;
@@ -78,3 +82,7 @@ void customdata_data_transfer_interp_normal_normals(const CustomDataTransferLaye
const float *weights,
const int count,
const float mix_factor);
+
+#ifdef __cplusplus
+}
+#endif