mirror of
https://github.com/QuasarApp/SoundBand.git
synced 2025-04-27 15:54:31 +00:00
13 lines
222 B
C
13 lines
222 B
C
#ifndef SYNC_GLOBAL_H
|
|
#define SYNC_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(SYNC_LIBRARY)
|
|
# define SYNCSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define SYNCSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // SYNC_GLOBAL_H
|