mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-25 15:49:08 -05:00
c8ccd5a9e3
Add Common Package Specification support to export(EXPORT).
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();
|
|
}
|