11 lines
101 B
C
11 lines
101 B
C
|
#ifdef _WIN32
|
||
|
__declspec(dllimport)
|
||
|
#endif
|
||
|
extern void bar();
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
bar();
|
||
|
return 0;
|
||
|
}
|