mirror of
https://github.com/reactos/CMake.git
synced 2024-12-18 17:16:58 +00:00
11 lines
101 B
C
11 lines
101 B
C
#ifdef _WIN32
|
|
__declspec(dllimport)
|
|
#endif
|
|
extern void bar();
|
|
|
|
int main()
|
|
{
|
|
bar();
|
|
return 0;
|
|
}
|