How to call Wine dll from python on Linux?

吃可爱长大的小学妹 提交于 2019-11-30 13:22:47

Doesn't Wine provide *.so versions of the dlls? I seem to have /usr/lib32/wine/advapi32.dll.so, for example.

If you're on a 64-bit machine, keep in mind that you'll need a 32-bit version of Python to load 32-bit libraries.

Understand that .DLL is the format used by Windows.

On linux, such libraries end with .SO

You can't use a library compiled for one platform on the other one. It's not compatible.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!