summaryrefslogtreecommitdiffstats
path: root/amarok/src/amarok_export.h
blob: 23afb7725bf327ef6239447b374d5da4578fdf39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright:  See COPYING file that comes with this distribution

#ifndef _AMAROK_EXPORT_H_
#define _AMAROK_EXPORT_H_

#include <config.h>

#ifdef __KDE_HAVE_GCC_VISIBILITY
#define LIBAMAROK_NO_EXPORT __attribute__ ((visibility("hidden")))
#define LIBAMAROK_EXPORT __attribute__ ((visibility("default")))
#else
#define LIBAMAROK_NO_EXPORT
#define LIBAMAROK_EXPORT
#endif
 
#endif