2009-10-04 10:30:41 +03:00
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
2016-07-09 11:21:54 +02:00
|
|
|
#define testLib5_EXPORT __declspec(dllexport)
|
2009-10-04 10:30:41 +03:00
|
|
|
#else
|
2016-07-09 11:21:54 +02:00
|
|
|
#define testLib5_EXPORT
|
2009-10-04 10:30:41 +03:00
|
|
|
#endif
|
|
|
|
|
2016-07-09 11:21:54 +02:00
|
|
|
testLib5_EXPORT int testLib5(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|