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:
Diffstat (limited to 'source/blender/imbuf/IMB_metadata.h')
-rw-r--r--source/blender/imbuf/IMB_metadata.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/imbuf/IMB_metadata.h b/source/blender/imbuf/IMB_metadata.h
index fc08e17dd96..edbdd7be482 100644
--- a/source/blender/imbuf/IMB_metadata.h
+++ b/source/blender/imbuf/IMB_metadata.h
@@ -24,6 +24,10 @@
#ifndef __IMB_METADATA_H__
#define __IMB_METADATA_H__
+#ifdef __cplusplus
+extern "C" {
+#endif
+
struct IDProperty;
struct ImBuf;
struct anim;
@@ -77,4 +81,8 @@ struct IDProperty *IMB_anim_load_metadata(struct anim *anim);
typedef void (*IMBMetadataForeachCb)(const char *field, const char *value, void *userdata);
void IMB_metadata_foreach(struct ImBuf *ibuf, IMBMetadataForeachCb callback, void *userdata);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* __IMB_METADATA_H__ */