|
#ifndef __PLATFORM_H__
|
|
#define __PLATFORM_H__
|
|
|
|
#ifdef WIN32
|
|
# ifdef libmean_EXPORTS
|
|
# define LIBMEAN_EXPORT extern __declspec(dllexport)
|
|
# else
|
|
# define LIBMEAN_EXPORT __declspec(dllimport)
|
|
# endif
|
|
#else
|
|
# define LIBMEAN_EXPORT
|
|
#endif
|
|
|
|
#endif /* __PLATFORM_H__ */
|