logplus/DrawBase/include/drawbase_global.h

15 lines
282 B
C

#ifndef DRAWBASE_GLOBAL_H
#define DRAWBASE_GLOBAL_H
#ifdef WIN32
# ifdef DRAWBASE_LIB_EXPORT
# define DRAWBASE_EXPORT __declspec(dllexport)
# else
# define DRAWBASE_EXPORT __declspec(dllimport)
# endif
#else
#define DRAWBASE_EXPORT
#endif
#endif