在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
'
)