有什么方法可以将我的程序与 Wine 编译的部分链接起来吗?

发布于 2024-08-28 14:56:47 字数 264 浏览 11 评论 0原文

我正在尝试在 Linux 中使用 windows dll 功能。 我当前的解决方案是编译一个单独的 wine 应用程序,该应用程序使用 dll 并通过 IPC 在 dll 和主应用程序之间传输请求/响应。

这是可行的,但与简单的 dll 调用相比,这是一个真正的开销。

我发现wine编译的程序通常是一个引导脚本和一些.so,其中(根据文件实用程序)是普通的linux动态链接库。

有什么方法可以将该 .so 直接链接到我的应用程序吗?有说明书吗?

I am trying to use windows dll functionality in Linux.
My current solution is a compilation of a separate wine application, that uses dll and transfer requests/responses between dll and main application over IPC.

This works, but is a real overhead comparing to a simple dll calls.

I see that wine-compiled program usually is a bootstrapping-script and some .so, which (according to file utility) is normal linux dynamically linked library.

Are there any way to link that .so directly to my application? Are there any manual?

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

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

发布评论

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

评论(1

魂牵梦绕锁你心扉 2024-09-04 14:56:47

您可以使用 Winelib 编写可以使用 Windows DLL 的 Linux 应用程序。

编辑:

供将来参考:

libtest.c

#include <stdio.h>
#include <windows.h>
int main(int argc, char* argv[])
{
  HMODULE h;

  h = LoadLibrary("cards.dll");
  printf("%d\n", h);
}

执行:

$ winegcc -m32 libtest.c 
$ ./a.out
536936448

You may be able to use Winelib to write a Linux app that can use Windows DLLs.

EDIT:

For future reference:

libtest.c:

#include <stdio.h>
#include <windows.h>
int main(int argc, char* argv[])
{
  HMODULE h;

  h = LoadLibrary("cards.dll");
  printf("%d\n", h);
}

Execution:

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