efl/src/lib/evil/evil_macro.h

28 lines
395 B
C

#ifndef __EVIL_MACRO_H__
#define __EVIL_MACRO_H__
#if _WIN32_WINNT < 0x0600
# error Windows XP not supported anymore
#endif
#ifdef EAPI
# undef EAPI
#endif
#ifdef EFL_BUILD
# ifdef DLL_EXPORT
# define EAPI __declspec(dllexport)
# else
# define EAPI
# endif
#else
# define EAPI __declspec(dllimport)
#endif
#ifndef PATH_MAX
# define PATH_MAX MAX_PATH
#endif
#endif /* __EVIL_MACRO_H__ */