2 回答
TA贡献1827条经验 获得超4个赞
这应该有效:
from ctypes import *
string1 = b'testrr' # byte string for char*
dll = CDLL('util.dll') # CDLL unless function declared __stdcall
funct = dll.Util_funct
funct.argtypes = c_char_p,c_char_p,POINTER(c_int) # c_char_p for char*
funct.restype = c_long # return value is long
p = c_int()
buf = create_string_buffer(1024) # assume this is big enough???
retval = funct(string1, buf, byref(p))
print(retval)
TA贡献1799条经验 获得超9个赞
感谢您的所有回答!我想我想通了。使用不是最聪明的方式,而只是尝试/试验不同的数据类型。由于这不是一个常见的图书馆,而且我没有关于它的信息,也许 sulution 对其他人不会很有用,但无论如何。
看起来函数一次只处理一个字符,因为如果我传递一个单词它只返回一个编码字符。所以这里是:
from ctypes import *
buf = create_unicode_buffer(1024)
string1 = "a"
c_s = c_wchar_p(string1)
dll = CDLL('util.dll')
enc = dll.Util_funct
enc.argtypes = c_wchar_p, c_wchar_p, POINTER(c_int)
enc.restype = c_long # i don't think this type matters at all
p = c_int()
enc(c_s, buf, byref(p))
print(p.value)
print(buf.value)
输出为 1 和符号 ^
再次感谢
添加回答
举报