cmake/Tests/Jump/Library/Shared/jumpShared.cxx
2018-08-09 18:06:22 +02:00

11 lines
139 B
C++

#ifdef _WIN32
# define JUMP_EXPORT __declspec(dllexport)
#else
# define JUMP_EXPORT
#endif
JUMP_EXPORT int jumpShared()
{
return 0;
}