summaryrefslogtreecommitdiffstats
path: root/Tests/Framework/bar.cxx
blob: c8ddc0ae03e54c26c5c7c46ee249ac44f8e261c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifdef _WIN32
#  define CM_TEST_LIB_IMPORT  __declspec( dllimport )
#else 
#  define CM_TEST_LIB_IMPORT
#endif
CM_TEST_LIB_IMPORT void foo();
int main()
{
  foo();
  return 0;
}