2008-01-28 16:40:21 +03:00
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
2016-05-16 17:34:04 +03:00
|
|
|
#define testExe2_EXPORT __declspec(dllexport)
|
2008-01-28 16:40:21 +03:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#define testExe2_EXPORT
|
2008-01-28 16:40:21 +03:00
|
|
|
#endif
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
testExe2_EXPORT int testExe2Func(void)
|
|
|
|
{
|
|
|
|
return 123;
|
|
|
|
}
|
2008-01-28 16:40:21 +03:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|