mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-20 19:55:10 +08:00
11 lines
101 B
C
11 lines
101 B
C
#ifdef _WIN32
|
|
__declspec(dllimport)
|
|
#endif
|
|
extern void bar();
|
|
|
|
int main()
|
|
{
|
|
bar();
|
|
return 0;
|
|
}
|