mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 22:58:37 -05:00
461efa7b51
This MR may help to solve issues #19757 and #18008 Fixes: #19965
11 lines
95 B
C
11 lines
95 B
C
|
|
#if defined(_WIN32)
|
|
__declspec(dllimport)
|
|
#endif
|
|
void func_c();
|
|
|
|
void lib()
|
|
{
|
|
func_c();
|
|
}
|