mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
8 lines
135 B
C++
8 lines
135 B
C++
#ifdef _WIN32
|
|
# define JUMP_EXPORT __declspec(dllexport)
|
|
#else
|
|
# define JUMP_EXPORT
|
|
#endif
|
|
|
|
JUMP_EXPORT int jumpShared() { return 0; }
|