-
This commit is contained in:
19
rtkwebview/rktwebview_global.h
Normal file
19
rtkwebview/rktwebview_global.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef RKTWEBVIEW_GLOBAL_H
|
||||
#define RKTWEBVIEW_GLOBAL_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(RKTWEBVIEW_LIBRARY)
|
||||
#define RKTWEBVIEW_EXPORT Q_DECL_EXPORT
|
||||
#else
|
||||
#define RKTWEBVIEW_EXPORT Q_DECL_IMPORT
|
||||
#endif
|
||||
|
||||
#endif // RKTWEBVIEW_GLOBAL_H
|
||||
Reference in New Issue
Block a user