2012-02-03 10:36:26 -05:00
|
|
|
#ifdef _WIN32
|
2016-05-16 10:34:04 -04:00
|
|
|
#define TEST_EXPORT __declspec(dllexport)
|
2012-02-03 10:36:26 -05:00
|
|
|
#else
|
2016-05-16 10:34:04 -04:00
|
|
|
#define TEST_EXPORT
|
2012-02-03 10:36:26 -05:00
|
|
|
#endif
|
2016-05-16 10:34:04 -04:00
|
|
|
TEST_EXPORT int testCxxModule(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|