diff options
Diffstat (limited to 'Tests/MacRuntimePath/A/framework2.h')
-rw-r--r-- | Tests/MacRuntimePath/A/framework2.h | 12 |
1 files changed, 6 insertions, 6 deletions
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(); |