2005年4月7日

在C++ Builder中调用FORTRAN生成的DLL

摘要: 1. Fortran中的函数定义形式 subroutine add1[dllexport](p1,p2,p3) p3=p1+p2 end subroutine add1 2. DLL中函数名的检查 用Tdump.exe检查*.dll文件,得到DLL文件中的函数名,例如: _ADD1@12 ... 阅读全文

posted @ 2005-04-07 07:56 Ja 阅读(1395) 评论(0) 推荐(0)

怎么取得DLL文件中的函数名列表?

摘要: 如题 能不能取得DLL文件中的函数名列表呀? 在Console中,BCB的工具tdump.exe可以做到。 在程序中怎么实现呢? 阅读全文

posted @ 2005-04-07 07:53 Ja 阅读(1410) 评论(1) 推荐(0)

导航