19 lines
387 B
Plaintext
19 lines
387 B
Plaintext
#ifndef _DLLEXPORT_H_
|
|
#define _DLLEXPORT_H_
|
|
|
|
#include "CompileSettings.h"
|
|
|
|
#if _STATIC_LIB_ == 0
|
|
# ifdef _MYDLL_
|
|
# define EXPORT_FROM_MYDLL __declspec(dllimport)
|
|
# define EXPIMP_TEMPLATE extern
|
|
# else
|
|
# define EXPORT_FROM_MYDLL __declspec(dllexport)
|
|
# define EXPIMP_TEMPLATE
|
|
# endif
|
|
#else
|
|
# define EXPORT_FROM_MYDLL
|
|
# define EXPIMP_TEMPLATE
|
|
#endif
|
|
|
|
#endif/// END IFNDEF _DLLEXPORT_H_ |