def 文件是否需要定义

发布于 2024-12-08 12:49:38 字数 65 浏览 0 评论 0原文

是否有必要在vc++(非托管)dll中定义def文件。如果我不想定义def文件,那么如何创建没有def文件的dll。

Is there necessary to define def file in the vc++(unmanaged) dll.If I do'nt want to define the def file then how can I create the dll without def file.

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

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

发布评论

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

评论(1

年华零落成诗 2024-12-15 12:49:38

.def 文件是模块定义文件。它控制从 dll 导出哪些符号。 .def 文件并不是绝对必要的 - 可以使用 __declspec(dllexport) 关键字来指定导出。

一般来说,在 C++ 中使用 __declspec(dllexport) 更容易,因为使用 .def 导出 C++ 符号需要了解编译器的名称修改方案。

The .def file is the module definition file. It controls which symbols are exported from the dll. The .def file is not absolutely necessary - the __declspec(dllexport) keyword can be used to specify exports instead.

In general, using __declspec(dllexport) is easier with C++, as exporting a C++ symbol using a .def requires an understanding of the compiler's name mangling scheme.

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