mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-04 21:30:01 -05:00
13 lines
214 B
C
13 lines
214 B
C
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
# define testExe2_IMPORT __declspec(dllimport)
|
|
#else
|
|
# define testExe2_IMPORT
|
|
#endif
|
|
|
|
testExe2_IMPORT int testExe2Func(void);
|
|
|
|
int imp_mod1()
|
|
{
|
|
return testExe2Func();
|
|
}
|