发布时间:2019-09-08 09:14:40编辑:auto阅读(3158)
python调用动态库有两种类型,主要看dll的导出函数的调用约定:__stdll和__cdecl
对应的动态库的调用方式为
ctypes.cdll.LoadLibrary( 'test.dll' )对应__cdecl调用方式
ctypes.windll.LoadLibrary( 'test.dll' )对应_stdll调用方式
test.h文件
#include <stdio.h>
#include <wchar.h>
//因为给python测试,默认不给c\c++程序调用,所以直接写__declspec(dllexport),如果要给c\c++调用,需要自己定义宏决定__declspec(dllexport)是导入还是导出
extern "C"
{
__declspec(dllexport) int __cdecl test(wchar_t* a, int len);
};
test.cpp文件
#include "test.h"
__declspec(dllexport) int __cdecl test(wchar_t* a, int len)
{
printf("get [%S] len %d\r\n", a, len);
printf("hell test %s line %d \r\n", __FUNCTION__, __LINE__);
return 169;
}
调用动态库的test.py文件
#coding=utf-8
import ctypes
slen = 4
sBuf = 'aaaaaaaaaabbbbbbbbbbbbbb'
adll = ctypes.cdll.LoadLibrary( 'pydll.dll' )
##传入的参数是宽字符
adll.test(sBuf, 123);
input("press enter to quit")
如果调用方式不匹配可能报ValueError: Procedure probably called with too many arguments (8 bytes in excess)错误
上一篇: Python web 目前较火的三大
下一篇: python 几个重要函数
54157
40918
35440
31062
25960
25693
24142
19687
15744
15210
1979°
1825°
1905°
2002°
1987°
2170°
2126°
1943°
2017°
2009°