1

我正在尝试使用 Delphi XE2 调用使用 Delphi 7(在 unicode 支持之前)构建的 DLL。代码是这样的:

function Foo(Param1: PChar; Var Param2: DWORD; Var Param3: DWORD): PChar; stdcall; external 'bar.dll';

然后我打电话:

var
  V1: PChar;
  V2: AnsiString;
  V3, V4: DWORD;

begin
  V1 := Foo(PChar(V2), V3, V4);
  ..

此代码在 Delphi 2010 中有效,但在 XE2 中,我使用以下堆栈出现访问冲突:

System.UTF8ToUnicodeString(nil)
System.UTF8ToString(nil)
System.TObject.ClassName
Vcl.Forms.IsClass(???,Exception)
Vcl.Forms.TApplication.HandleException($2083120)
Vcl.Controls.TWinControl.MainWndProc(???)
System.Classes.StdWndProc(726196,273,6106,2365402)
:776e77d8 ; C:\Windows\SysWOW64\user32.dll
:776e78cb ; C:\Windows\SysWOW64\user32.dll
:776ef139 ; C:\Windows\SysWOW64\user32.dll
:776eaaa6 user32.SendMessageW + 0x52
:749fb322 ; C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9200.16579_none_8937eec6860750f5\comctl32.dll
:749fb27e ; C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9200.16579_none_8937eec6860750f5\comctl32.dll
:776e77d8 ; C:\Windows\SysWOW64\user32.dll
:776e78cb ; C:\Windows\SysWOW64\user32.dll
:776ebd11 user32.ChangeWindowMessageFilterEx + 0x71
:776ebd39 user32.CallWindowProcW + 0x1c
Vcl.Controls.TWinControl.DefaultHandler(???)
:0048b0c1 TWinControl.DefaultHandler + $DD
:0048afc4 TWinControl.WndProc + $5B8
:0049d031 TButtonControl.WndProc + $71
:004535f2 StdWndProc + $16
:776e77d8 ; C:\Windows\SysWOW64\user32.dll
:776e78cb ; C:\Windows\SysWOW64\user32.dll
:776e899d ; C:\Windows\SysWOW64\user32.dll
:776e8a66 user32.DispatchMessageW + 0x10
4

2 回答 2

6

PChar映射到PAnsiCharD7,但映射到PWideCharD2009 及更高版本。您在使用AnsiString而不是在正确的轨道上UnicodeString,但您不能将 an 类型AnsiString转换为 a PWideChar。您需要将其类型转换为 a PAnsiChar,并且您需要更改 D2009+ 中的 DLL 函数声明以匹配PAnsiCharDLL 实际使用的:

function Foo(Param1: PAnsiChar; var Param2: DWORD; var Param3: DWORD): PAnsiChar; stdcall; external 'bar.dll';

var
  V1: PAnsiChar;
  V2: AnsiString;
  V3, V4: DWORD;
begin
  V1 := Foo(PAnsiChar(V2), V3, V4);
  ..
于 2013-06-18T18:44:08.943 回答
3

作为一个,在自 Delphi 2009 以来的任何 Delphi 版本中进行类型转换AnsiString都是错误的。那是成为而不是. 如果该代码在 Delphi 2010 中有效,那么这完全是偶然的。修复您的代码以使用正确的字符类型。V2PCharPCharPWideCharPAnsiChar

在 Delphi 7 中,该PChar参数为PAnsiChar,因此更改 Delphi 2010 和 Delphi XE2 导入单元中的声明,使其明确为PAnsiChar. 对于返回类型也是如此。

于 2013-06-18T18:44:34.827 回答