mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
11 lines
103 B
C
11 lines
103 B
C
|
|
#if defined(_WIN32)
|
|
__declspec(dllimport)
|
|
#endif
|
|
void func_c(void);
|
|
|
|
void lib(void)
|
|
{
|
|
func_c();
|
|
}
|