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.
 
 
 

15 lines
321 B

#include <QtGlobal>
#if defined(LIBIP_LIBRARY)
# define LIBIP_EXPORT Q_DECL_EXPORT
#else
# define LIBIP_EXPORT Q_DECL_IMPORT
#endif
#ifdef WIN32
#define LIBIP_LOCAL
#define LIBIP_PUBLIC
#else
#define LIBIP_LOCAL __attribute__((visibility("hidden")))
#define LIBIP_PUBLIC __attribute__((visibility("default")))
#endif