2010-01-08 53 views

回答

27

有德爾福看看windows.pas:

procedure CopyMemory(Destination: Pointer; Source: Pointer; Length: DWORD); 
begin 
    Move(Source^, Destination^, Length); 
end; 

是否回答你的問題? :>

+0

我怎麼會錯過這樣一個事實,一個指針,另一個不......噢,非常感謝。 – JPvdMerwe 2010-01-08 13:44:38

+7

這和參數順序是相反的。 – 2010-01-08 14:06:32