使用delphiXE中的pchar参数调用delphi 2006 dll

时间:2012-07-03 15:39:12

标签: delphi dll unicode char delphi-xe

由于我已经从delphi 5升级到XE,我正在努力使用前一段时间编译的特定Dll。我的阻塞点似乎与unicode / ansi字符有关,但我还没有找到如何解决问题

以下是程序示例:

procedure GetFilename(Buffer: PChar; BufSize: Integer); stdcall;

在我的代码中,我这样称呼

implementation    
procedure GetFilename; external 'myDll.dll' name 'GetFilename';
procedure myproc
var
  buffer : Array [0..255] of Char;
begin
  GetFilename(buffer, length(buffer)-1);
  Showmessage(buffer); //This gives me chinese character
end; 

缓冲区包含:

byte((@buffer[0])^); // 67 which is the ASCII for C
byte((@buffer[1])^); // 92 which is the ASCII for \

我期待正常的是以“C:\”开头的字符串

有没有人遇到同样的问题?

1 个答案:

答案 0 :(得分:5)

因为dll是使用非Unicode版本的Delphi制作的,所以必须从

更改声明
procedure GetFilename(Buffer: PChar; BufSize: Integer); stdcall;

procedure GetFilename(Buffer: PAnsiChar; BufSize: Integer); stdcall;

中的缓冲区变量
buffer : Array [0..255] of Char;

buffer : Array [0..255] of AnsiChar;

此外,要了解Delphi Unicode支持,请查看MarcoCantú的Delphi and Unicode白皮书。