24 lines
530 B
C
24 lines
530 B
C
#ifndef AVBDDCLEGACY_GLOBAL_H
|
|
#define AVBDDCLEGACY_GLOBAL_H
|
|
|
|
#if 0
|
|
//#include <QtCore/qglobal.h>
|
|
|
|
#if defined(AVBDDCLEGACY_LIBRARY)
|
|
# define AVBDDCLEGACYSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define AVBDDCLEGACYSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
#endif
|
|
|
|
#define Q_DECL_EXPORT __declspec(dllexport)
|
|
#define Q_DECL_IMPORT __declspec(dllimport)
|
|
|
|
#if defined(AVBDDCLEGACY_LIBRARY)
|
|
# define AVBDDCLEGACYSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define AVBDDCLEGACYSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // AVBDDCLEGACY_GLOBAL_H
|