You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
649 B
C
19 lines
649 B
C
|
2 weeks ago
|
#ifndef WORKTABLE_DRIVER_EXPORT_H
|
||
|
|
#define WORKTABLE_DRIVER_EXPORT_H
|
||
|
|
|
||
|
|
#if defined(_MSC_VER) || defined(WIN64) || defined(_WIN64) || defined(__WIN64__) || defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
|
||
|
|
# define Q_DECL_EXPORT __declspec(dllexport)
|
||
|
|
# define Q_DECL_IMPORT __declspec(dllimport)
|
||
|
|
#else
|
||
|
|
# define Q_DECL_EXPORT __attribute__((visibility("default")))
|
||
|
|
# define Q_DECL_IMPORT __attribute__((visibility("default")))
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#if defined(WORKTABLE_DRIVER_EXPORTD)
|
||
|
|
# define WORKTABLE_DRIVER_EXPORT Q_DECL_EXPORT
|
||
|
|
#else
|
||
|
|
# define WORKTABLE_DRIVER_EXPORT Q_DECL_IMPORT
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif WORKTABLE_DRIVER_EXPORT_H
|