https://github.com/Kitware/CMake
Raw File
Tip revision: 707b3e0809e95aa19e154c36a82208ec58aa2952 authored by Bill Hoffman on 21 January 2008, 17:56:51 UTC
ENH: final 2.4.8
Tip revision: 707b3e0
foobar.c
#ifdef _WIN32
__declspec(dllimport) 
#endif
extern  void bar();

int main()
{
  bar();
  return 0;
}
back to top