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