mirror of
https://github.com/reactos/CMake.git
synced 2025-01-22 03:16:03 +00:00
10 lines
183 B
C
10 lines
183 B
C
#ifdef _WIN32
|
|
# ifdef bar_EXPORTS
|
|
# define BAR_EXPORT __declspec( dllexport )
|
|
# else
|
|
# define BAR_EXPORT __declspec( dllimport )
|
|
# endif
|
|
#else
|
|
# define BAR_EXPORT
|
|
#endif
|