我有一段代码使用 Delphi XE3 编译成 64 位 COM DLL。
function TRPMFileReadStream.Read(var Buffer; const Count: Longint): Longint;
begin
if ((Self.FPosition >= 0) and (Count > 0)) then
begin
Result := Self.FSize - Self.FPosition;
if ((Result > 0) and (Result >= Count)) then
begin
if (Result > Count) then
begin
Result := Count;
end;
CopyMemory(
Pointer(@Buffer),
Pointer(LongWord(Self.FMemory) + Self.FPosition),
Result
);
Inc(Self.FPosition, Result);
Exit;
end;
end;
Result := 0;
end;
在 Win7-64bit 上,上述工作正常。但是在 Win8-64bit 上,相同的 DLL 文件会在 CopyMemory 上引发访问冲突。CopyMemory 在 WinAPI.windows 单元中实现。
就像这样。
procedure CopyMemory(Destination: Pointer; Source: Pointer; Length: NativeUInt);
begin
Move(Source^, Destination^, Length);
end;
有任何想法吗?谢谢。