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