如何在创建exe文件的同时创建lib文件

发布于 2024-09-01 05:55:41 字数 185 浏览 4 评论 0原文

我有一个内置到 exe 中的遗留应用程序。 我使用的是 Visual Studio 6.0,该应用程序是一个 C++ 应用程序。它使用了许多lib文件,是在VS6.0中内置的。现在我需要使用可执行文件中的 api。我想在创建 exe 的同时创建一个 lib 文件。我无法更改旧应用程序的代码。

非常感谢任何帮助。

谢谢, 啊

I have an legacy application which builds into exe.
I am using Visual Studio 6.0 and the application is an c++ application. It used many lib files, built in VS6.0. Now i need to use the api's which in the executable. I want to create a lib file while it is creating an exe. I cannot change the code of the legacy application.

Any help is highly appreciated.

Thanks,
AH

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

短暂陪伴 2024-09-08 05:55:41

创建一个单独的库项目,并将包含您想要重用的 API 的任何源文件添加到其中。从 exe 项目中删除这些文件并使 exe 项目依赖于库项目可能会更干净,但这并不是绝对必要的。

Create a separate library project and add any source files with APIs you want to reuse into it. It's probably cleaner to also remove those files from the exe project and make the exe project depend on the library project, but this isn't strictly necessary.

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