python引用DLL文件的方法
作者:像风一样的自由 时间:2021-01-17 03:35:19
本文实例讲述了python引用DLL文件的方法。分享给大家供大家参考。具体分析如下:
在python中调用dll文件中的接口比较简单,如我们有一个test.dll文件,内部定义如下:
extern "C"
{
int __stdcall test( void* p, int len)
{
return len;
}
}
在python中我们可以用以下两种方式载入
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调用即可
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中接口的定义如下:
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' )
希望本文所述对大家的Python程序设计有所帮助。
标签:python,DLL
0
投稿
猜你喜欢
如何在SQL Server 2005数据库中导入SQL Server 2008的数据
2024-01-27 22:05:21
Django + Uwsgi + Nginx 实现生产环境部署的方法
2023-01-01 06:02:49
javascript面向对象编程(二)
2008-03-07 12:59:00
详解Python的Twisted框架中reactor事件管理器的用法
2023-09-07 16:28:18
CSS中背景background的一些语法
2009-03-24 21:02:00
python logging日志模块的详解
2021-04-27 19:16:55
asp如何限制重复订阅邮件或重复投票?
2010-06-09 18:48:00
JavaScript中关于base64的一些事
2024-05-02 16:20:25
Mysql 数据库双机热备的配置方法
2010-06-09 19:13:00
Oracle在PL/SQL中嵌入SQL语句
2024-01-19 03:06:03
Python利用PyPDF2快速拆分PDF文档
2021-11-06 09:39:23
使用JavaScript访问XML数据
2023-06-29 22:19:08
laravel 实现划分admin和home 模块分组
2024-05-22 10:02:03
MySQL的一级防范检查列表
2011-12-14 18:39:22
Python 普通最小二乘法(OLS)进行多项式拟合的方法
2021-03-09 23:06:58
node+axios实现下载外网文件到本地
2024-05-05 09:20:48
javascript 设置文本框中焦点的位置
2024-05-02 17:29:41
JS与jQ读取xml文件的方法
2024-04-19 10:13:22
python memory_profiler库生成器和迭代器内存占用的时间分析
2023-01-06 21:25:02
Python中使用pprint函数进行格式化输出的教程
2022-08-26 03:34:17