2008-10-12 18:41:06 +02:00
|
|
|
#ifdef _WIN32
|
2013-03-16 19:13:01 +02:00
|
|
|
__declspec(dllimport)
|
2008-10-12 18:41:06 +02:00
|
|
|
#endif
|
2024-04-14 22:45:38 +02:00
|
|
|
extern void foo(void);
|
2008-10-12 18:41:06 +02:00
|
|
|
#ifdef _WIN32
|
2013-03-16 19:13:01 +02:00
|
|
|
__declspec(dllexport)
|
2008-10-12 18:41:06 +02:00
|
|
|
#endif
|
2024-04-14 22:45:38 +02:00
|
|
|
void bar(void)
|
2008-10-12 18:41:06 +02:00
|
|
|
{
|
|
|
|
foo();
|
|
|
|
}
|