猿问

Python ctypes、dll 函数参数

我有一个带有函数的 DLL


EXPORT long Util_funct( char *intext, char *outtext, int *outlen )

看起来它需要 char *intext、char *outtext、int *outlen。我试图在 python 中定义不同的数据类型,所以我可以传递一个参数,但到目前为止没有成功。


from ctypes import *


string1 = "testrr"

#b_string1 = string1.encode('utf-8')


dll = WinDLL('util.dll')

funct = dll.Util_funct


funct.argtypes = [c_wchar_p,c_char_p, POINTER(c_int)]

funct.restype = c_char_p


p = c_int()

buf = create_string_buffer(1024)

retval = funct(string1, buf, byref(p))


print(retval)

输出为 None,但我看到p. 你能帮我为函数定义正确的数据类型吗?


慕慕森
浏览 241回答 2
2回答

GCT1015

这应该有效:from ctypes import *string1 = b'testrr'     # byte string for char*dll = CDLL('util.dll')  # CDLL unless function declared __stdcallfunct = dll.Util_functfunct.argtypes = c_char_p,c_char_p,POINTER(c_int) # c_char_p for char*funct.restype = c_long # return value is longp = c_int()buf = create_string_buffer(1024) # assume this is big enough???retval = funct(string1, buf, byref(p))print(retval)

扬帆大鱼

感谢您的所有回答!我想我想通了。使用不是最聪明的方式,而只是尝试/试验不同的数据类型。由于这不是一个常见的图书馆,而且我没有关于它的信息,也许 sulution 对其他人不会很有用,但无论如何。看起来函数一次只处理一个字符,因为如果我传递一个单词它只返回一个编码字符。所以这里是:from ctypes import *buf = create_unicode_buffer(1024)string1 = "a"c_s = c_wchar_p(string1)dll = CDLL('util.dll')enc = dll.Util_functenc.argtypes = c_wchar_p, c_wchar_p, POINTER(c_int)enc.restype = c_long # i don't think this type matters at allp = c_int()enc(c_s, buf, byref(p))print(p.value)print(buf.value)输出为 1 和符号 ^再次感谢
随时随地看视频慕课网APP

相关分类

Python
我要回答