diff options
Diffstat (limited to 'Tests/CustComDepend/bar.h')
-rw-r--r-- | Tests/CustComDepend/bar.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Tests/CustComDepend/bar.h b/Tests/CustComDepend/bar.h index d179464..c072b81 100644 --- a/Tests/CustComDepend/bar.h +++ b/Tests/CustComDepend/bar.h @@ -1,9 +1,9 @@ #ifdef _WIN32 -# ifdef bar_EXPORTS -# define BAR_EXPORT __declspec( dllexport ) -# else -# define BAR_EXPORT __declspec( dllimport ) -# endif +#ifdef bar_EXPORTS +#define BAR_EXPORT __declspec(dllexport) #else -# define BAR_EXPORT +#define BAR_EXPORT __declspec(dllimport) +#endif +#else +#define BAR_EXPORT #endif |