GrabBag/Module/ThreadPool/Inc/VrKernelTool_global.h

19 lines
597 B
C
Raw Normal View History

2026-06-20 23:36:24 +08:00
#ifndef VRKERNELTOOL_GLOBAL_H
#define VRKERNELTOOL_GLOBAL_H
2026-03-28 10:49:55 +08:00
#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
2026-06-20 23:36:24 +08:00
#if defined(VRKERNELTOOL_LIBRARY)
# define WDKERNELTOOL_EXPORT Q_MEM_EXPORT
2026-03-28 10:49:55 +08:00
#else
2026-06-20 23:36:24 +08:00
# define WDKERNELTOOL_EXPORT Q_MEM_IMPORT
2026-03-28 10:49:55 +08:00
#endif
#endif