通常情况下,dll 中的函数如果采用 _stdcall ,则生成的dll中函数名会被修饰。比如有如下的函数://dll.cint _stdcall add(int a, int b){ return a + b;}