用dev-c++怎样生成dll文件

2024年11月30日 02:28
有1个网友回答
网友(1):

假设你要把某个函数导出,在头文件中在它的声明前加上
_declspec(dllexport)就可以导出了,如:
_declspec(dllexport) int Add(int,int);