1

我正在尝试使用我的 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

4

2 回答 2

2

您是否使用__declspec(dllexport)从 DLL 导出函数?如果是,请改用.def文件。因为__declspec(dllexport)会使DLL的导出描述符中的函数名前有下划线;或者如果您的函数是 C++,则修改函数名称。

上次用过Win32::API,不支持__cdecl。您应该将其更改为__stdcall

于 2013-07-03T06:29:48.543 回答
0

使用 StudPE、PE Explorer 或 dumpbin /exports 找出您要使用的函数的真实名称。这样你就不用关心函数是否是名称修饰的。你知道它的真名。

于 2013-07-13T05:26:36.857 回答