22 lines
212 B
C++
Raw Normal View History

2018-10-28 12:09:07 +01:00
#ifdef IS_LIB
# ifdef _WIN32
__declspec(dllexport)
# endif
int internal_subdir_empty_2()
{
return 0;
}
#else
# ifdef _WIN32
__declspec(dllexport)
# endif
int subdir_empty_2()
{
return 0;
}
#endif