19 lines
254 B
C
19 lines
254 B
C
|
|
#ifndef DLINKGLOBAL_H
|
||
|
|
#define DLINKGLOBAL_H
|
||
|
|
|
||
|
|
#include <QtCore/qglobal.h>
|
||
|
|
|
||
|
|
#ifdef QtDlink
|
||
|
|
#if defined(DLINK_LIBRARY)
|
||
|
|
# define DLINKSHARED_EXPORT Q_DECL_EXPORT
|
||
|
|
#else
|
||
|
|
# define DLINKSHARED_EXPORT Q_DECL_IMPORT
|
||
|
|
#endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif // DLINKGLOBAL_H
|