10 lines
176 B
C
Raw Normal View History

#ifdef _WIN32
2018-08-09 18:06:22 +02:00
# ifdef bar_EXPORTS
# define BAR_EXPORT __declspec(dllexport)
# else
# define BAR_EXPORT __declspec(dllimport)
# endif
#else
2018-08-09 18:06:22 +02:00
# define BAR_EXPORT
#endif