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