2012-04-19 19:04:21 +03:00
|
|
|
#ifdef _WIN32
|
2018-08-09 18:06:22 +02:00
|
|
|
# define TEST_EXPORT __declspec(dllexport)
|
2012-04-19 19:04:21 +03:00
|
|
|
#else
|
2018-08-09 18:06:22 +02:00
|
|
|
# define TEST_EXPORT
|
2012-04-19 19:04:21 +03:00
|
|
|
#endif
|
2016-07-09 11:21:54 +02:00
|
|
|
TEST_EXPORT int testCxxModule(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|