Windows的接囗函数都被封装在.dll文件中,那么Python如何系统调用呢?
Windows的接囗函数都被封装在.dll文件中,那么Python如何系统调用呢?
import ctypes
from ctypes import *
dll=cdll.LoadLibrary('C:\xxx.dll')
floatAdd=dll.floatAdd #加载函数对象
floatAdd.argtypes=[c_float,c_float]
floatAdd.restype=c_float
print floatAdd(1.4,3.45)