2008-10-12 18:41:06 +02:00
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
|
|
# define testLib3Imp_EXPORT __declspec(dllexport)
|
2012-02-18 12:40:36 +02:00
|
|
|
# define testLib3ImpDep_IMPORT __declspec(dllimport)
|
2008-10-12 18:41:06 +02:00
|
|
|
#else
|
|
|
|
# define testLib3Imp_EXPORT
|
2012-02-18 12:40:36 +02:00
|
|
|
# define testLib3ImpDep_IMPORT
|
2008-10-12 18:41:06 +02:00
|
|
|
#endif
|
|
|
|
|
2012-02-18 12:40:36 +02:00
|
|
|
testLib3ImpDep_IMPORT int testLib3ImpDep(void);
|
|
|
|
testLib3Imp_EXPORT int testLib3Imp(void) { return testLib3ImpDep(); }
|