由于我已经从 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:\”开头的字符串
有没有人遇到过同样的问题?