I am using a Python script, which is loading a Windows DLL. The following code shows a rough example
import ctypes
Foo = ctypes.WinDLL("./Foo.dll")
foo = Foo.Foo
foo.restype = ctypes.c_int
foo.argtypes = [ctypes.c_int]
print(foo(0))
To use this script without building a *.so library in Linux, I would like to use Wine. The reason is that I do not have the source code of Foo.dll.
Is it possible to use this Python script or a similar built module within Wine while using other modules without Wine?