Hello,
Is it possible to use ctypes for this? I tried a sample code from net but it is not working.
from ctypes import cdll
myDll = ctypes.LoadLibrary('C++dll.dll')
mydll.testString()
Can u tell me how to load a C++ dll and call the functions from python?