1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-02-25 20:33:20 +01:00
tomahawk/thirdparty/jdns/jdns_export.h

18 lines
261 B
C
Raw Normal View History

#ifndef JDNS_EXPORT_H
#define JDNS_EXPORT_H
#include <QtCore/QtGlobal>
#ifdef Q_WS_WIN
# if defined(MAKE_JDNS_LIB)
# define JDNS_EXPORT Q_DECL_EXPORT
# else
# define JDNS_EXPORT Q_DECL_IMPORT
# endif
#else
# define JDNS_EXPORT Q_DECL_EXPORT
#endif
#endif