标签: python ctypes
我需要使用ctypes从python中使用Dll,但是我读了教程,我什么都不懂!
我想从路径加载dll并访问其功能......
SOS !!
由于
答案 0 :(得分:3)
import ctypes foo = ctypes.CDLL("/path/to/library") foo.function_name()
你应该寻找更好的教程。这是一个:http://python.net/crew/theller/ctypes/tutorial.html