15 lines
262 B
C
15 lines
262 B
C
|
#ifndef __EXPORT_H__
|
||
|
#define __EXPORT_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 __EXPORT_H__
|