diff options
Diffstat (limited to 'Tests/MacRuntimePath')
-rw-r--r-- | Tests/MacRuntimePath/A/framework.h | 12 | ||||
-rw-r--r-- | Tests/MacRuntimePath/A/framework2.h | 12 | ||||
-rw-r--r-- | Tests/MacRuntimePath/A/shared.h | 12 |
3 files changed, 18 insertions, 18 deletions
diff --git a/Tests/MacRuntimePath/A/framework.h b/Tests/MacRuntimePath/A/framework.h index bdd10f0..343317c 100644 --- a/Tests/MacRuntimePath/A/framework.h +++ b/Tests/MacRuntimePath/A/framework.h @@ -3,13 +3,13 @@ #define framework_h #ifdef WIN32 -# ifdef framework_EXPORTS -# define FRAMEWORK_EXPORT __declspec(dllexport) -# else -# define FRAMEWORK_EXPORT __declspec(dllimport) -# endif +#ifdef framework_EXPORTS +#define FRAMEWORK_EXPORT __declspec(dllexport) #else -# define FRAMEWORK_EXPORT +#define FRAMEWORK_EXPORT __declspec(dllimport) +#endif +#else +#define FRAMEWORK_EXPORT #endif void FRAMEWORK_EXPORT framework(); diff --git a/Tests/MacRuntimePath/A/framework2.h b/Tests/MacRuntimePath/A/framework2.h index 4576d12..7f45f4d 100644 --- a/Tests/MacRuntimePath/A/framework2.h +++ b/Tests/MacRuntimePath/A/framework2.h @@ -3,13 +3,13 @@ #define framework2_h #ifdef WIN32 -# ifdef framework2_EXPORTS -# define FRAMEWORK2_EXPORT __declspec(dllexport) -# else -# define FRAMEWORK2_EXPORT __declspec(dllimport) -# endif +#ifdef framework2_EXPORTS +#define FRAMEWORK2_EXPORT __declspec(dllexport) #else -# define FRAMEWORK2_EXPORT +#define FRAMEWORK2_EXPORT __declspec(dllimport) +#endif +#else +#define FRAMEWORK2_EXPORT #endif void FRAMEWORK2_EXPORT framework2(); diff --git a/Tests/MacRuntimePath/A/shared.h b/Tests/MacRuntimePath/A/shared.h index 3588fb8..28904fd 100644 --- a/Tests/MacRuntimePath/A/shared.h +++ b/Tests/MacRuntimePath/A/shared.h @@ -3,13 +3,13 @@ #define shared_h #ifdef WIN32 -# ifdef shared_EXPORTS -# define SHARED_EXPORT __declspec(dllexport) -# else -# define SHARED_EXPORT __declspec(dllimport) -# endif +#ifdef shared_EXPORTS +#define SHARED_EXPORT __declspec(dllexport) #else -# define SHARED_EXPORT +#define SHARED_EXPORT __declspec(dllimport) +#endif +#else +#define SHARED_EXPORT #endif void SHARED_EXPORT shared(); |