mirror of
https://github.com/vicr123/theshell.git
synced 2025-01-23 20:22:27 -05:00
14 lines
293 B
C
14 lines
293 B
C
#ifndef UGLOBAL_H
|
|
#define UGLOBAL_H
|
|
|
|
#include <QtCore/QtGlobal>
|
|
|
|
#if defined(UGLOBALHOTKEY_LIBRARY)
|
|
# define UGLOBALHOTKEY_EXPORT Q_DECL_EXPORT
|
|
#elif defined(UGLOBALHOTKEY_NOEXPORT)
|
|
# define UGLOBALHOTKEY_EXPORT
|
|
#else
|
|
# define UGLOBALHOTKEY_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // UGLOBAL_H
|