summaryrefslogtreecommitdiff
path: root/orc/orcutils.h
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-04-27 16:56:11 +0100
committerTim-Philipp Müller <tim@centricular.com>2018-04-28 01:09:54 +0100
commitf77a850077633ee68038bfa2cc7c47a98208df5a (patch)
tree8aa364bb3e75a4a021978aa5e9629df32948b7f4 /orc/orcutils.h
parent32dcb3e31d5aba9141738c48dcd13e30e8edd9c1 (diff)
downloadorc-f77a850077633ee68038bfa2cc7c47a98208df5a.tar.gz
orc: decorate public symbols with ORC_API
We'll use that later to control symbol visibility and exported symbols.
Diffstat (limited to 'orc/orcutils.h')
-rw-r--r--orc/orcutils.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/orc/orcutils.h b/orc/orcutils.h
index 177cd90..a56f520 100644
--- a/orc/orcutils.h
+++ b/orc/orcutils.h
@@ -214,6 +214,7 @@ ORC_BEGIN_DECLS
#ifdef ORC_ENABLE_UNSTABLE_API
+/* FIXME: remove, these are internal functions that were never exported */
#if defined(__arm__) || defined(__mips__)
char * get_proc_cpuinfo (void);
#endif
@@ -224,8 +225,9 @@ char * get_tag_value (char *s, const char *tag);
orc_int64 _strtoll (const char *nptr, char **endptr, int base);
-void orc_global_mutex_lock (void);
-void orc_global_mutex_unlock (void);
+/* FIXME: why are these exported ? */
+ORC_API void orc_global_mutex_lock (void);
+ORC_API void orc_global_mutex_unlock (void);
#endif