Basic Python Questions About Calling Functions From A Loaded Dll
I am asking this questions after many hours of searching and trying various examples, but I can not seem to call a function from a loaded DLL. I think if someone could show me one
Solution 1:
The documentation for ctypes says that that exception is also raised if you're trying to call it with the wrong calling convention. So you might need to load it with windll
instead of cdll
.
Post a Comment for "Basic Python Questions About Calling Functions From A Loaded Dll"