How to call Wine dll from python on Linux?

前端 未结 2 1442
太阳男子
太阳男子 2021-01-02 13:53

I\'m writing a python script in Linux, and need to call some Windows functions available in Wine. Specifically, AllocateAndInitializeSid and LookupAccoun

2条回答
  •  忘掉有多难
    2021-01-02 14:25

    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.

提交回复
热议问题