16 lines
288 B
C
16 lines
288 B
C
|
#ifndef CONFIG_H
|
||
|
#define CONFIG_H
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
# ifdef CPPCHECKLIB_EXPORT
|
||
|
# define CPPCHECKLIB __declspec(dllexport)
|
||
|
# elif defined(CPPCHECKLIB_IMPORT)
|
||
|
# define CPPCHECKLIB __declspec(dllimport)
|
||
|
# else
|
||
|
# define CPPCHECKLIB
|
||
|
# endif
|
||
|
#else
|
||
|
# define CPPCHECKLIB
|
||
|
#endif
|
||
|
|
||
|
#endif
|