12 lines
178 B
C++
Raw Normal View History

#ifdef _WIN32
# define CM_TEST_LIB_IMPORT __declspec( dllimport )
2007-05-08 12:43:06 -04:00
#else
# define CM_TEST_LIB_IMPORT
#endif
CM_TEST_LIB_IMPORT void foo();
2007-05-08 10:58:35 -04:00
int main()
{
foo();
return 0;
}