18 lines
344 B
C
18 lines
344 B
C
#ifndef IVY_COMMON_MISC_H_
|
|
#define IVY_COMMON_MISC_H_
|
|
|
|
#if defined(_MSC_VER) && IVY_STATIC==0
|
|
#ifdef IVY_EXPORT
|
|
#define IVY_API extern __declspec(dllexport)
|
|
#else
|
|
#define IVY_API extern __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
#define IVY_API extern
|
|
#endif
|
|
|
|
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
|
#define MAX(x, y) ((x) > (y) ? (x) : (y))
|
|
|
|
#endif
|