mirror of
https://github.com/Kitware/CMake.git
synced 2026-07-12 02:24:39 +00:00
13 lines
144 B
C
13 lines
144 B
C
#ifdef _WIN32
|
|
__declspec(dllimport)
|
|
#endif
|
|
extern void dep9(void);
|
|
|
|
#ifdef _WIN32
|
|
__declspec(dllexport)
|
|
#endif
|
|
void mod(void)
|
|
{
|
|
dep9();
|
|
}
|