2008-01-28 16:40:21 +03:00
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
|
|
# define testLib3_EXPORT __declspec(dllexport)
|
2008-01-31 01:26:09 +03:00
|
|
|
# define testLib3Imp_IMPORT __declspec(dllimport)
|
2008-01-28 16:40:21 +03:00
|
|
|
#else
|
|
|
|
# define testLib3_EXPORT
|
2008-01-31 01:26:09 +03:00
|
|
|
# define testLib3Imp_IMPORT
|
2008-01-28 16:40:21 +03:00
|
|
|
#endif
|
|
|
|
|
2008-01-31 01:26:09 +03:00
|
|
|
testLib3Imp_IMPORT int testLib3Imp(void);
|
|
|
|
testLib3_EXPORT int testLib3(void) { return testLib3Imp(); }
|