You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amarok/amarok/src/amarok_export.h

18 lines
382 B

// 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