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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-07-04 20:20:42 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-07-04 20:20:42 +0400
commitcc68f45502a0e6f94715eb61898b17fdfeba1da9 (patch)
treed8bea72405475af1bed95ed416379896cd18d48c /source/blender/blenlib/BLI_path_util.h
parent05d2b904b2110855f1e668177287c892eb6dbe41 (diff)
Fix cmake/OSX build after path changes.
Diffstat (limited to 'source/blender/blenlib/BLI_path_util.h')
-rw-r--r--source/blender/blenlib/BLI_path_util.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_path_util.h b/source/blender/blenlib/BLI_path_util.h
index 24b74b40a37..e2cb0e131a5 100644
--- a/source/blender/blenlib/BLI_path_util.h
+++ b/source/blender/blenlib/BLI_path_util.h
@@ -33,6 +33,10 @@
#ifndef BLI_UTIL_H
#define BLI_UTIL_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
struct ListBase;
struct direntry;
@@ -191,5 +195,9 @@ void BLI_where_is_temp(char *fullname, int usertemp);
void BLI_string_to_utf8(char *original, char *utf_8, const char *code);
#endif
+#ifdef __cplusplus
+}
+#endif
+
#endif