标签: c export mingw stdcall
我需要导出功能
extern "C" __declspec(dllexport) int __stdcall MyFunc(int a,int b) { return a*2+b*b; }
严格使用“ MyFunc”导出名称,而不是MyFunc @ 8 MSVC允许通过.def文件执行此操作,但是如何在MinGW中执行此操作?
我真的需要有stdcall调用约定