11 lines
182 B
C
Raw Normal View History

2009-10-04 10:30:41 +03:00
#if defined(_WIN32) || defined(__CYGWIN__)
2018-08-09 18:06:22 +02:00
# define testLib5_EXPORT __declspec(dllexport)
2009-10-04 10:30:41 +03:00
#else
2018-08-09 18:06:22 +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;
}