delphi 读取内存

2018-10-31

delphi 读取内存

var
buf:array[0..10] of Char;
begin
CopyMemory(@buf,Pointer($FFFF0),8);
ShowMessage(buf);
end;

阅读14