bar.cxx 142 B

123456789
  1. #ifdef _WIN32
  2. # define CM_TEST_LIB_IMPORT __declspec( dllimport )
  3. #endif
  4. CM_TEST_LIB_IMPORT void foo();
  5. int main()
  6. {
  7. foo();
  8. return 0;
  9. }