mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-08 06:40:48 -06:00
14 lines
149 B
C
14 lines
149 B
C
extern
|
|
#ifdef _WIN32
|
|
__declspec(dllimport)
|
|
#endif
|
|
int answer(void);
|
|
|
|
#ifdef _WIN32
|
|
__declspec(dllexport)
|
|
#endif
|
|
int ask(void)
|
|
{
|
|
return answer();
|
|
}
|