mirror of
https://github.com/reactos/CMake.git
synced 2024-11-29 14:30:27 +00:00
12 lines
135 B
C
12 lines
135 B
C
#ifdef _WIN32
|
|
__declspec(dllimport)
|
|
#endif
|
|
extern void foo();
|
|
#ifdef _WIN32
|
|
__declspec(dllexport)
|
|
#endif
|
|
void bar()
|
|
{
|
|
foo();
|
|
}
|