在python中调用dll文件中的接口比较简单,实例代码以下:python
如咱们有一个test.dll文件,内部定义以下:linux
extern
"
C
"
{
int
__stdcall test(
void
*
p,
int
len)
{
return
len;
}
}
在python中咱们能够用如下两种方式载入spa
1
.
import
ctypes
dll
=
ctypes.windll.LoadLibrary(
'
test.dll
'
)
2
.
import
ctypes
dll
=
ctypes.WinDll(
'
test.dll
'
)
其中ctypes.windll为ctypes.WinDll类的一个对象,已经在ctypes模块中定义好的。在test.dll中有test接口,可直接用dll调用便可.net
nRst
=
dll.test( )
print
nRst
因为在test这个接口中须要传递两个参数,一个是void类型的指针,它指向一个缓冲区。一个是该缓冲区的长度。所以咱们要获取到python中的字符串的指针和长度指针
#方法一:
sBuf
=
'
aaaaaaaaaabbbbbbbbbbbbbb
'
pStr
=
ctypes.c_char_p( )
pStr.value
=
sBuf
pVoid
=
ctypes.cast( pStr, ctypes.c_void_p ).value
nRst
=
dll.test( pVoid, len( pStr.value) )
#方法二:
test = dll.test
test.argtypes = [ctypes.c_char_p, ctypes.c_int]
test.restypes = ctypes.c_int
nRst = test(sBuf, len(sBuf))
若是修改test.dll中接口的定义以下:rest
extern
"
C
"
{
int
__cdecl test(
void
*
p,
int
len)
{
return
len;
}
}
因为接口中定义的是cdecl格式的调用,因此在python中也须要用相应的类型对象
1
.
import
ctypes
dll
=
ctypes.cdll.LoadLibrary(
'
test.dll
'
)
##注:通常在linux下为test.o文件,一样能够使用以下的方法:
## dll = ctypes.cdll.LoadLibrary('test.o')
2
.
import
ctypes
dll
=
ctypes.CDll(
'
test.dll
'
)