13 lines
146 B
C
Raw Normal View History

2022-08-18 17:26:31 +02:00
#if defined(_WIN32)
__declspec(dllimport)
#endif
int foo(void);
#ifdef _WIN32
__declspec(dllexport)
#endif
int bar(void)
{
return foo();
}