I\'m writing a python script in Linux, and need to call some Windows functions available in Wine. Specifically, AllocateAndInitializeSid and LookupAccoun
AllocateAndInitializeSid
LookupAccoun
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.