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/blenlib/BLI_timer.h')
-rw-r--r--source/blender/blenlib/BLI_timer.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_timer.h b/source/blender/blenlib/BLI_timer.h
index 56cafb1bd36..144fcd0a0d7 100644
--- a/source/blender/blenlib/BLI_timer.h
+++ b/source/blender/blenlib/BLI_timer.h
@@ -26,6 +26,10 @@
* \ingroup BLI
*/
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* ret < 0: the timer will be removed.
* ret >= 0: the timer will be called again in ret seconds */
typedef double (*BLI_timer_func)(uintptr_t uuid, void *user_data);
@@ -54,4 +58,8 @@ void BLI_timer_free(void);
* is properly configured for the new file. */
void BLI_timer_on_file_load(void);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* __BLI_TIMER_H__ */