mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 13:51:33 -06:00
19 lines
191 B
C
19 lines
191 B
C
|
|
#if defined(_WIN32)
|
|
__declspec(dllimport)
|
|
#endif
|
|
void lib(void);
|
|
|
|
#if defined(_WIN32)
|
|
__declspec(dllimport)
|
|
#endif
|
|
void unref(void);
|
|
|
|
int main(void)
|
|
{
|
|
lib();
|
|
unref();
|
|
|
|
return 0;
|
|
}
|