2008-01-31 01:26:09 +03:00
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
|
|
# define testLib3Imp_EXPORT __declspec(dllexport)
|
2011-12-14 20:28:42 +04:00
|
|
|
# define testLib3ImpDep_IMPORT __declspec(dllimport)
|
2008-01-31 01:26:09 +03:00
|
|
|
#else
|
|
|
|
# define testLib3Imp_EXPORT
|
2011-12-14 20:28:42 +04:00
|
|
|
# define testLib3ImpDep_IMPORT
|
2008-01-31 01:26:09 +03:00
|
|
|
#endif
|
|
|
|
|
2011-12-14 20:28:42 +04:00
|
|
|
testLib3ImpDep_IMPORT int testLib3ImpDep(void);
|
|
|
|
testLib3Imp_EXPORT int testLib3Imp(void) { return testLib3ImpDep(); }
|