dll中的函数具有以下原型
void Foo(int arg1, int& arg2);
问题是,如何在C中声明函数原型?
声明合法吗?
void Foo(int, int*);
c c++ dll
c ×1
c++ ×1
dll ×1