在C中为函数指针回调函数编写Python ctypes

在C中为函数指针回调函数编写Python ctypes,第1张

在C中为函数指针回调函数编写Python ctypes

您的回调类型签名错误;您忘记了结果类型。当函数退出时,它也会收集垃圾。您需要使其全球化。

您的

GetStatus
电话缺少论据
pArg
。另外,在使用指针时,您需要定义
argtypes
,否则在64位平台上会遇到问题。ctypes的默认参数类型为C
int

from ctypes import *api = CDLL('API.dll')StatusCB = WINFUNCTYPE(None, c_int, c_int, c_void_p)GetStatus = api.GetStatusGetStatus.argtypes = [StatusCB, c_void_p]GetStatus.restype = Nonedef status_fn(nErrorCode, nSID, pArg): print 'Hello world'    print pArg[0]  # 42?# reference the callback to keep it alive_status_fn = StatusCB(status_fn)arg = c_int(42) # passed to callback?def start(): GetStatus(_status_fn, byref(arg))


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5650539.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存