python如何调用dll库中的函数
在python中使用ctypes模块调用dll库中函数的方法
1.首先,在Python项目中引入ctypes模块;
from ctypes import *
2.ctypes模块引入后,在Python中加载dll库;
Objdll = ctypes.WinDLL("dllpath")
3.最后,dll库加载好后,通过以下方法即可调用dll库中的函数;
strDllPath = sys.path[0] + str(os.sep) + "createguid.dll"
dll = CDLL(strDllPath)
b = dll.newGUID()
a = c_char_p(b)
except Exception, error:
print error
return ""
return a.value
声明:本站所有作品(图文、音视频)均由用户自行上传分享,或互联网相关知识整合,仅供网友学习交流,若您的权利被侵害,请联系 管理员 删除。
本文链接:http://news.ew35.com/