diff options
Diffstat (limited to 'Tests/Jump/Library/jumpShared.cxx')
-rw-r--r-- | Tests/Jump/Library/jumpShared.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/Jump/Library/jumpShared.cxx b/Tests/Jump/Library/jumpShared.cxx new file mode 100644 index 0000000..f500058 --- /dev/null +++ b/Tests/Jump/Library/jumpShared.cxx @@ -0,0 +1,7 @@ +#ifdef _WIN32 +# define JUMP_EXPORT __declspec(dllexport) +#else +# define JUMP_EXPORT +#endif + +JUMP_EXPORT int jumpShared() { return 0; } |