【转载】python调用dll方法

python调用dll方法

来自  http://blog.csdn.net/lf8289/article/details/2322550
分类: python
2008-04-24 12:27 6833人阅读 评论(6) 收藏 举报

在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 '  )
相关文章
相关标签/搜索