18 lines
610 B
C
18 lines
610 B
C
#ifndef VRSHAREMEM_GLOBAL_H
|
|
#define VRSHAREMEM_GLOBAL_H
|
|
|
|
#if defined(_MSC_VER) || defined(WIN64) || defined(_WIN64) || defined(__WIN64__) || defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
|
|
# define Q_MEM_EXPORT __declspec(dllexport)
|
|
# define Q_MEM_IMPORT __declspec(dllimport)
|
|
#else
|
|
# define Q_MEM_EXPORT __attribute__((visibility("default")))
|
|
# define Q_MEM_IMPORT __attribute__((visibility("default")))
|
|
#endif
|
|
|
|
#if defined(VRSHAREMEM_LIBRARY)
|
|
# define VRSHAREMEM_EXPORT Q_MEM_EXPORT
|
|
#else
|
|
# define VRSHAREMEM_EXPORT Q_MEM_IMPORT
|
|
#endif
|
|
|
|
#endif // VRSHAREMEM_GLOBAL_H
|