C++ DLL的制作与使用

benojan 发布于 2024-04-11 08:44
制作DLL // calc.h #ifdef EXPORT_DLL #define CALC_API __declspec(dllexport) #else #define CALC_API __declspec(dllimport) #endif extern "C" { CALC_API int 加(int a, int b); CAL...
标签: c++ dll cmake