diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-26 05:19:47 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-26 05:19:47 +0000 |
commit | 1b23ad7e208929b8b99e37de64282f74070f37b6 (patch) | |
tree | 3b36d1df9b2f7357d2f541435bb4855ce9860ee5 /src/xine-engine/refcounter.c | |
parent | 8e0cafbd9c5afcbb083d891bb138313aac76b04a (diff) | |
download | xine-lib-1b23ad7e208929b8b99e37de64282f74070f37b6.tar.gz xine-lib-1b23ad7e208929b8b99e37de64282f74070f37b6.tar.bz2 |
Use protected visibility for all the functions exported by libxine.so, so that their binding is local to the library (has a similar effect to -Bsymbolic, but will work better with hidden visibility enabled, that is step two).
CVS patchset: 8289
CVS date: 2006/09/26 05:19:47
Diffstat (limited to 'src/xine-engine/refcounter.c')
-rw-r--r-- | src/xine-engine/refcounter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/refcounter.c b/src/xine-engine/refcounter.c index 11c6ceb11..18c2ad1ce 100644 --- a/src/xine-engine/refcounter.c +++ b/src/xine-engine/refcounter.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: refcounter.c,v 1.1 2004/10/14 23:25:24 tmattern Exp $ + * $Id: refcounter.c,v 1.2 2006/09/26 05:19:49 dgp85 Exp $ * */ #define LOG_MODULE "refcounter" @@ -26,8 +26,8 @@ #define LOG */ -#include "refcounter.h" #include "xine_internal.h" +#include "refcounter.h" refcounter_t* _x_new_refcounter(void *object, void (*destructor)(void *)) { |