mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 15:21:39 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63652 954022d7-b5bf-4e40-9824-e11837661b57
30 lines
749 B
C
30 lines
749 B
C
#ifndef _BUILD_BASE_EXPORTIMPORT_H
|
|
#define _BUILD_BASE_EXPORTIMPORT_H
|
|
|
|
#ifndef Q_DECL_EXPORT
|
|
|
|
#ifndef Q_BUILDCUSTOM_VISIBILITY_AVAILABLE
|
|
#ifdef QT_VISIBILITY_AVAILABLE
|
|
#define Q_BUILDCUSTOM_VISIBILITY_AVAILABLE
|
|
#endif
|
|
#endif
|
|
|
|
#if defined(_WIN32) || defined(_WIN32_WCE) || defined(_WIN64)
|
|
#define Q_DECL_EXPORT __declspec(dllexport)
|
|
#define Q_DECL_IMPORT __declspec(dllimport)
|
|
#elif defined(Q_BUILDCUSTOM_VISIBILITY_AVAILABLE)
|
|
#define Q_DECL_EXPORT __attribute__((visibility("default")))
|
|
#define Q_DECL_IMPORT __attribute__((visibility("default")))
|
|
#endif
|
|
|
|
#ifndef Q_DECL_EXPORT
|
|
#define Q_DECL_EXPORT
|
|
#endif
|
|
#ifndef Q_DECL_IMPORT
|
|
#define Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif // _BUILD_BASE_EXPORTIMPORT_H
|