summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/xine-engine/xine_private.h19
-rw-r--r--src/xine-utils/attributes.h9
2 files changed, 17 insertions, 11 deletions
diff --git a/src/xine-engine/xine_private.h b/src/xine-engine/xine_private.h
index 1f3564cbc..35005e45d 100644
--- a/src/xine-engine/xine_private.h
+++ b/src/xine-engine/xine_private.h
@@ -21,6 +21,21 @@
#ifndef HAVE_XINE_PRIVATE_H
#define HAVE_XINE_PRIVATE_H
+#ifndef XINE_LIBRARY_COMPILE
+# error xine_private.h is for libxine's private use only!
+#endif
+
+#include "configure.h"
+
+/* Export internal only for functions that are unavailable to plugins */
+#if defined(SUPPORT_ATTRIBUTE_VISIBILITY_INTERNAL)
+# define INTERNAL __attribute__((__visibility__("internal")))
+#elif defined(SUPPORT_ATTRIBUTE_VISIBILITY_DEFAULT)
+# define INTERNAL __attribute__((__visibility__("default")))
+#else
+# define INTERNAL
+#endif
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -28,9 +43,9 @@ extern "C" {
/*
* make file descriptors and sockets uninheritable
*/
-int _x_set_file_close_on_exec(int fd) XINE_INTERNAL;
+int _x_set_file_close_on_exec(int fd) INTERNAL;
-int _x_set_socket_close_on_exec(int s) XINE_INTERNAL;
+int _x_set_socket_close_on_exec(int s) INTERNAL;
#ifdef __cplusplus
}
diff --git a/src/xine-utils/attributes.h b/src/xine-utils/attributes.h
index 9f02d9b7b..2326dab18 100644
--- a/src/xine-utils/attributes.h
+++ b/src/xine-utils/attributes.h
@@ -66,15 +66,6 @@
# define XINE_PROTECTED
#endif
-/* Export hidden only for private/internal libxine functions */
-#if defined(XINE_LIBRARY_COMPILE) && defined(SUPPORT_ATTRIBUTE_VISIBILITY_INTERNAL)
-# define XINE_INTERNAL __attribute__((__visibility__("internal")))
-#elif defined(XINE_LIBRARY_COMPILE) && defined(SUPPORT_ATTRIBUTE_VISIBILITY_DEFAULT)
-# define XINE_INTERNAL __attribute__((__visibility__("default")))
-#else
-# define XINE_INTERNAL
-#endif
-
#ifdef SUPPORT_ATTRIBUTE_SENTINEL
# define XINE_SENTINEL __attribute__((__sentinel__))
#else