1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-21 04:01:40 +08:00
2006-11-29 21:53:52 -05:00

12 lines
135 B
C

#ifdef _WIN32
__declspec(dllimport)
#endif
extern void foo();
#ifdef _WIN32
__declspec(dllexport)
#endif
void bar()
{
foo();
}