11 lines
160 B
C
Raw Normal View History

2018-08-09 18:06:22 +02:00
#if defined(_WIN32) && defined(COMPILE_FOR_SHARED_LIB)
# define EXPORT __declspec(dllexport)
#else
# define EXPORT
#endif
EXPORT int a(void)
2016-07-09 11:21:54 +02:00
{
return 0;
}