15 lines
282 B
C
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
|