WindowsError:异常:访问冲突读取0x00000000尝试从Windows DLL API调用返回

时间:2015-03-05 16:52:11

标签: python ctypes byref

使用以下代码:

from ctypes import *

test = WinDLL('My.dll')
test.My_API_call_fetch.argtypes = [POINTER(c_long)]
rtn = c_long()
test.My_API_call_fetch(byref(rtn))

我得到了WindowsError:异常:访问冲突读取0x000000000并且已经用尽了想法。有人可以提供一些建议吗?

我可以执行任何不会返回任何错误的API调用。

0 个答案:

没有答案