14 lines
316 B
C
Raw Normal View History

#if defined(_WIN32) || defined(__CYGWIN__)
2018-08-09 18:06:22 +02:00
# define testLib3_EXPORT __declspec(dllexport)
# define testLib3Imp_IMPORT __declspec(dllimport)
#else
2018-08-09 18:06:22 +02:00
# define testLib3_EXPORT
# define testLib3Imp_IMPORT
#endif
testLib3Imp_IMPORT int testLib3Imp(void);
2016-07-09 11:21:54 +02:00
testLib3_EXPORT int testLib3(void)
{
return testLib3Imp();
}