与 VC++ 中的 C++Builder DLL 加载时链接

发布于 2024-11-02 00:26:12 字数 177 浏览 2 评论 0原文

是否可以通过加载时链接在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

惜醉颜 2024-11-09 00:26:12

我们最终使用此处描述的“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

无戏配角 2024-11-09 00:26:12

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文