2009-04-09 00:29:04 +04:00
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
2016-05-16 17:34:04 +03:00
|
|
|
#define testLib5_EXPORT __declspec(dllexport)
|
2009-04-09 00:29:04 +04:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#define testLib5_EXPORT
|
2009-04-09 00:29:04 +04:00
|
|
|
#endif
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
testLib5_EXPORT int testLib5(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|