我正在尝试使用我的 perl 代码中的 Win32 dll。
use Win32::API;
$Win32::API::DEBUG = 1;
$function = Win32::API->new(
'mydll.dll', 'int myfunc()',
);
$return = $function->Call();
但我收到以下错误:
Win32::API::new: Loading library 'mydll.dll'
(PM)parse_prototype: got PROC 'myfunc'
(PM)parse_prototype: got PARAMS ''
parse_prototype: IN=[ ]
parse_prototype: OUT='int' PACKING='i' API_TYPE=3
FAILED GetProcAddress for Proc 'myfunc': The specified procedure could not be found.
Can't call method "Call" on an undefined value at .\test_dll.pl line 6.
我的 dll 是使用 _cdecl 调用约定编译的。这有什么区别吗?我在 Windows 7 上使用活动 perl 5.14