mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-02-25 20:33:20 +01:00
18 lines
261 B
C
18 lines
261 B
C
|
#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
|
||
|
|