与 VC++ 中的 C++Builder DLL 加载时链接
是否可以通过加载时链接在 VC++ 应用程序中使用 C++Builder DLL?
如果是这样,这是如何完成的?我尝试针对 C++Builder .lib 文件构建 VC++ 应用程序,但收到一条错误,表明 VC++ 认为 .lib 文件已损坏。
是否可以生成 VC++ 友好的 .lib 文件?或者还有比这更简单的方法吗?
Is it possible to use a C++Builder DLL in a VC++ application using load-time linking?
If so, how is this done? I tried to build the VC++ application against my C++Builder .lib file, but got an error indicating that VC++ thought the .lib file was corrupt.
Is it possible to generate a VC++-friendly .lib file? Or is there an easier way than this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们最终使用此处描述的“Stubbing Out Functions”方法来完成此操作:
http://support.microsoft.com/kb/131313
We ended up doing it using the "Stubbing Out Functions" method described here:
http://support.microsoft.com/kb/131313
Borland/CodeGear/Embarcadero IDE 包含一个 IMPLIB.EXE 命令行工具,用于从 .dll 文件生成兼容的导入 .lib 文件。看看VC++有没有类似的工具。
Borland/CodeGear/Embarcadero IDEs include an IMPLIB.EXE command-line tool to generate a compatible import .lib file from a .dll file. See if VC++ has a similar tool.