diff options
Diffstat (limited to 'Tests/ConfigSources/shared.cpp')
-rw-r--r-- | Tests/ConfigSources/shared.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/ConfigSources/shared.cpp b/Tests/ConfigSources/shared.cpp new file mode 100644 index 0000000000..1726c46b0f --- /dev/null +++ b/Tests/ConfigSources/shared.cpp @@ -0,0 +1,8 @@ +#if defined(_WIN32) +# define EXPORT __declspec(dllexport) +#else +# define EXPORT +#endif +EXPORT void shared() +{ +} |