I am using a python script, which is loading a windll. The following 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?