2008-01-28 08:40:21 -05:00
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
2016-05-16 10:34:04 -04:00
|
|
|
#define testLib3_EXPORT __declspec(dllexport)
|
|
|
|
#define testLib3Imp_IMPORT __declspec(dllimport)
|
2008-01-28 08:40:21 -05:00
|
|
|
#else
|
2016-05-16 10:34:04 -04:00
|
|
|
#define testLib3_EXPORT
|
|
|
|
#define testLib3Imp_IMPORT
|
2008-01-28 08:40:21 -05:00
|
|
|
#endif
|
|
|
|
|
2008-01-30 17:26:09 -05:00
|
|
|
testLib3Imp_IMPORT int testLib3Imp(void);
|
2016-05-16 10:34:04 -04:00
|
|
|
testLib3_EXPORT int testLib3(void)
|
|
|
|
{
|
|
|
|
return testLib3Imp();
|
|
|
|
}
|