在linux平台上使用dll win32
我想在 Linux 中使用 Win32 的 DLL 库。
我可以使用 Wine 库来做到这一点吗?
I want to use a DLL library for Win32 in Linux.
Can I use a library of Wine to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够使用 winelib 来做到这一点。
这里是对著名 WINE 开发人员 Ulrich Weigand 的采访:
You should be able to do that using winelib.
Here is an interview with Ulrich Weigand a prominent WINE developer:
仅当您的调用应用程序也是 win32 可执行文件时,您才可以在 WINE 子系统中使用 win32 dll。 否则,您应该拥有 dll 源代码并尝试将它们改编为相应编程语言的 Linux 编译器。
You can use win32 dll in WINE subsystem only if your invoking application is win32 executable too. Otherwise you should have dll sources and try to adapt them for linux compiler of according programming language.